Caused by: jakarta.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.tool.schema.spi.SchemaManagementException: Schema-validation: missing table ['(테이블명)']
( SchemaManagementException 오류 )
JPA 에서는 db테이블과 엔티티를 매핑해줘야 하는데, 이 때 테이블을 인식하지 못해서 발생한 오류.
원래는 @Table(name = "테이블명") 이렇게만 써줬는데,
schema를 명시해주지 않아서, 테이블을 인식하지 못한다고 한다.
@Table(schema = "스키마", name = "테이블명")
위처럼 수정해주니 해주니 잘된다.
schema 에는 테이블이 존재하는데 Hibernate에서 인식을 못한거라는데
Hibernate 에 대한 공부가 더 필요할 듯하다.