eclipselink static weaving with final fields on Java 9
问题 I have some JPA annotated fields declared final like this: @Column(name = "SOME_FIELD", updatable = false, nullable = false) private final String someField; Those fields are stored in the database when the entity is inserted in the database. They cannot further be updated. For the Java programming language, such fields can be considered final. With the EclipseLink static weaving plugin, it's possible to lazy load entities, owing to some byte code instrumentation. I don't know if such