Spring Boot: Exception Stack
Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
[Request processing failed: org.springframework.orm.jpa.JpaSystemException:
No default constructor for entity: : com.example.redisdemo.DbUser] with root cause
org.hibernate.InstantiationException: No default constructor for entity: : com.example.springboot.User
at org.hibernate.metamodel.internal.EntityInstantiatorPojoStandard.instantiate(EntityInstantiatorPojoStandard.java:101)
~[hibernate-core-6.1.7.Final.jar:6.1.7.Final]
at org.hibernate.persister.entity.AbstractEntityPersister.instantiate(AbstractEntityPersister.java:5288)
~[hibernate-core-6.1.7.Final.jar:6.1.7.Final]
The above exception is what you get when you do not have a default constructor not been defined in your Entity/POJO class when working with Spring Data JPA.
The default constructor (with no parameters) is required by the Java Persistence API (JPA) to create instances of the entity class.

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!