EntityDefinition doesn't pick up inherited fields/methods #640
Comments
And what about the concrete class? |
A concrete implementation doesn't throw an error, but in my use case I don't necessarily know what concrete implementation I'm going to be passed (just that it will implement the interface MyObject). |
bartoszwalacik
added a commit
that referenced
this issue
Feb 25, 2018
bartoszwalacik
added a commit
that referenced
this issue
Feb 26, 2018
fix released in 3.8.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have some interfaces defined as follows:
When I try to register the object (with the following), it fails to detect the
id
property as expected:The error I get is:
PROPERTY_NOT_FOUND: property 'id' not found in class 'MyObject'
If the
getId()
method is directly onMyObject
, then the code above works as expected. This is usingjavers-core
version 3.7.5.The text was updated successfully, but these errors were encountered: