Spring RESTBucks uses Hibernate’s bytecode enhancement to avoid runtime overhead in favor of a build time step. This works fine on JDK 8. However, if the project is built on JDK 11, starting it fails with:
Caused by: java.lang.IllegalAccessError: Update to non-static final field org.springsource.restbucks.payment.Payment.order attempted from a different method ($$_hibernate_write_order) than the initializer method <init>
at org.springsource.restbucks.payment.Payment.$$_hibernate_write_order(Payment.java) ~[classes/:na]
at org.springsource.restbucks.payment.Payment.<init>(Payment.java:53) ~[classes/:na]
at org.springsource.restbucks.payment.CreditCardPayment.<init>(CreditCardPayment.java:37) ~[classes/:na]
... 27 common frames omitted
-
git clone https://github.com/odrotbohm/spring-restbucks
-
cd spring-restbucks
-
git checkout hibernate-enhance-problem
-
mvn spring-boot:run
Obviously Hibernate’s bytecode enhancement does something to the default constructor of Payment
.
Apparently some method ($$_hibernate_write_order
) gets injected that in turn tries to manipulate a final field.