I'm getting the following error after i try to load an entity by id in hibernate
Course is in unnamed module of loader 'app';
here is an example of my hibernate load code:
Course temp = (Course) currentSession.load(Course.class, cid);
P.S: i have thymeleaf and java 11 if that matters
Important : I am using spring-boot-devtools If i remove devtools from maven everything works fine