reflection « Entity « JPA Q&A





1. Updating JPA entity with reflection does not work?    stackoverflow.com

I have an entity which looks something like this: (I'm coding to the web page so I apologize for any mistakes)

@Entity
public class Entity {
    @Id
    ...

2. Possible bug with reflection of methods in entities    forum.hibernate.org

I think I may have found a bug with the way Hibernate looks to do reflection of method names. The below code snippets define my entity mapping in the abstract class then overrides the function names for alternate use in the concrete class. Running the code results in an IllegalArgumentException saying expected boolean, but got Byte. It appears hibernate is not ...