We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test case: https://github.com/Artur-/spring-jpa-test
After launching DemoApplication and opening http://localhost:8080 you should see
DemoApplication
EntityManager knows about these entities: [Entity1]
After copying Entity1.java to Entity2.java and replacing all 1s with 2s` in the file, you should be able to reload the page and see
Entity1.java
Entity2.java
1
2
EntityManager knows about these entities: [Entity1, Entity2]
However, you will still see
even though HotswapAgent outputs
HOTSWAP AGENT: 11:04:43.913 RELOAD (org.hotswap.agent.plugin.hibernate_jakarta.HibernateRefreshCommands) - Hibernate EntityMangerFactory configuration refreshed.
Side note: If you use JRebel, then it works as expected
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test case: https://github.com/Artur-/spring-jpa-test
After launching
DemoApplication
and opening http://localhost:8080 you should seeAfter copying
Entity1.java
toEntity2.java
and replacing all1
s with2
s` in the file, you should be able to reload the page and seeHowever, you will still see
even though HotswapAgent outputs
Side note: If you use JRebel, then it works as expected
The text was updated successfully, but these errors were encountered: