You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have some internal messages which extend a BaseClass. This BaseClass contains some variables for our database. These variables should be present in our DTOs.
To avoid ignoring the variables in every single mapper we're using a GenericConfig. In the GenericConfig no warnings were displayed. Neither when we compile the code nor at the IDE level.
Our GenericConfig looks like the following:
In this example Car extends BaseClass and CarDto extends GenericDto.
Now my question: Why does the IDEA plugin shows me the error that I have unmapped properties at Car map(CarDto dto)?
If I compile the code no warnings are shown, which I think is correct.
Maybe you have an idea where I have to look.
The text was updated successfully, but these errors were encountered:
We have some internal messages which extend a BaseClass. This
BaseClass
contains some variables for our database. These variables should be present in our DTOs.To avoid ignoring the variables in every single mapper we're using a GenericConfig. In the
GenericConfig
no warnings were displayed. Neither when we compile the code nor at the IDE level.Our
GenericConfig
looks like the following:The
GenericDto
is an empty interface. All DTOs implements this interface.The BaseClass looks like the following:
Every mapper extends this config.
In this example
Car extends BaseClass
andCarDto extends GenericDto
.Now my question: Why does the IDEA plugin shows me the error that I have unmapped properties at
Car map(CarDto dto)
?If I compile the code no warnings are shown, which I think is correct.
Maybe you have an idea where I have to look.
The text was updated successfully, but these errors were encountered: