-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
Milestone
Description
Hi,
I want to disable implicit type conversion. For example:
class MyDto {
private String rate;
}
class MyResponse {
private Float rate;
}
When I try to convert these two classes, MapStruct doesn't show any error and make automatic conversion between types even if field types are different. Is there any option to get build failure when field types doesn't match?
pochemuto