My Eclipse does a number of code-cleaning actions automatically when I save a Java file, among them adding final to private fields where possible.
Will this conflict with Hibernate's ability to inject entity properties into private fields?
@Id
private final Long id = null; // Eclipse made this "final"
// but Hibernate needs to set the id
Should I turn this save action off?
Update: I have tested the application and also looked at it with a debugger, and Hibernate does indeed reset the "final" field, so things continue to work okay. But is this guaranteed to work? For example, are there no VM or compiler optimizations that rely on a field really being final. Those would probably break. On the other hand, being able to set private fields via reflection seems to be a supported scenario, so the same thinking probably applies to final as well?