79652239

Date: 2025-06-04 06:51:27
Score: 1.5
Natty:
Report link

It looks like the application fails to create the users-table because it already exists as Andrew already pointed out.

You could try to add this line in your application.properties to make sure Hibernate knows how to initialize your SQL schemas.

spring.jpa.hibernate.ddl-auto=update

'Update' makes sure the table will be created if it doesn't exist and updates the table when you change your @Entity class.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Entity
  • Low reputation (1):
Posted by: Hans van den pol