0

I am using the example below: https://vladmihalcea.com/hibernate-4-bytecode-enhancement/

for the bytecode ehancement. I am building the content fine but the compiled code is unchanged. i used a decompiler to view the file and it is the same. How do i know if the bytecode is working?

Vlad Mihalcea
  • 142,745
  • 71
  • 566
  • 911

1 Answers1

0

As explained in this article, the bytecode enhancement plugin didn't work properly prior to Hibernate 5.

More, make sure that your IDE does not overwrite (by recompiling the source code) the classes which were previously enhanced by running the instrumentation task.

Vlad Mihalcea
  • 142,745
  • 71
  • 566
  • 911