db안에 테이블이 없어서 생기는 오류이다.
db연결은 되었는데 테이블 이름이 없다고 연결되지 않아 페이지가 로드가 되지 않았다.
처음 작성할 때는 테이블 안에
@Table(name="") 에서 name만 정의했었는데
schema까지 정의해서 작성해주어야 한다.
> ApiInfoEntity
> application.properties
source.url=jdbc:postgresql://localhost/postgres
반응형
'공부 > Spring' 카테고리의 다른 글
orphanRemoval (0) | 2021.05.17 |
---|---|
thymeleaf onclick href (0) | 2021.05.17 |
Unknown column '' in 'field list' on MySQL error (0) | 2021.05.04 |
Table 'DB_NAME.hibernate_sequence' doesn't exist (0) | 2021.04.28 |
[spring] application.properties 의 datasource 설정하기(port, db) - DB연결하기 (0) | 2021.04.27 |