Skip to content
Advertisement

Can’t start Spring Boot because of the class mapping

I was trying to start an Spring Boot application, with a simple class JPA mapping and H2 database, but every time I try to start the application, I have the same class error at the same column.

Class with error:

JavaScript

Error logged:

JavaScript

The column that is with error is a table and already mapped:

JavaScript

My H2 configurations:

JavaScript

I tried to import the class manually but how they are from the same package, java says that the import is never used.

Someone already passed by this or can help me with this please?

Advertisement

Answer

What was missing was to map the relationship between the classes, so after mapped, Spring Boot compiled in a good way.

JavaScript
Advertisement