Spring Boot - "Error creating bean with name 'entityManagerFactory'" - Start
use
javax.persistence.Id
instead of
org.springframework.data.annotation.Id
will solve the problem
Seems like you used @Id
annotation from the wrong package in your Degree
class. Change your import from org.springframework.data.annotation.Id
to javax.persistence.Id
. That should help with the exception you're getting.