Published 2022. 4. 6. 11:46
반응형
500 에러가 발생했습니다.
약 2주가 db도 새로 만들어보고 이런저런 사이트를 찾아보았으나 해결책을 못찾았습니다.
SQL Error: 1054, SQLState: 42S22
로그를 찾다보니 SQL Error를 발견!
application.properties에서
// 수정 전
spring.jpa.properties.hibernate.hbm2ddl.auto: none
// 수정 후
spring.jpa.properties.hibernate.hbm2ddl.auto: update
저렇게 바꾸어주면 된다고 해서 적용해보았습니다.
저 같은 경우에는 spring.jpa.properties.hibernate.hbm2ddl.auto 구문 자체가 없어서 update로 추가해주었더니 바로 500 에러 페이지가 해결되었습니다.
계속 안되서 신경 쓰고 있었던 건데 드디어 해결했습니다
참고 사이트
반응형
'programming > Trouble Shooting' 카테고리의 다른 글
게시글 등록 시 오류 발생 "/api/v1/posts"},"status":403, (0) | 2022.04.26 |
---|---|
yaml 구문 오류 did not find expected '-' indicator while.. (0) | 2022.04.25 |
[CodeDeploy] The specified key does not exist. (0) | 2022.03.29 |
AWS - Tomcat error(port 8080 failed to start. The port may already be in use..) (0) | 2022.03.17 |
AWS - deploy.sh 에러 발생 No such file or directory (0) | 2022.03.03 |