Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Problems occurred while performing provisioning operation
- windows apache wsgi 에러
- java di
- 14711 java
- windows 원격 연결 설정
- APPEND_SLASH = FALSE
- The requested operation has failed!
- 1188 java
- django 웹 페이지
- 2661 java
- 2961 java
- 원격 연결 포트 포워딩
- django
- 2961 도영이가 만든 맛있는 음식
- 2643 색종이 올려 놓기
- 18233 java
- 2661 좋은 수열
- django windows 배포 에러
- 14711 타일 뒤집기
- django apache deploy error
- django settings.py
- 18233 러버덕
- django httpd error
- django 프로젝트 시작
- 공유기 원격 설정
- 18233 비트마스킹
- 1188 음식 평론가
- 2643 java
- apache pythonpath
- django The requested operation has failed!
Archives
라이브러리는 도서관 아닌가요
Spring Error querying database. Cause: java.sql.SQLSyntaxErrorException 본문
Spring/Spring 참고 내용
Spring Error querying database. Cause: java.sql.SQLSyntaxErrorException
veryhi 2021. 10. 14. 02:50
호기롭게 스프링 부트 프로젝트를 실행시켰더니 다음과 같은 어처구니 없는 화면을 만날 때가 있다.
Error querying database. Cause: java.sql.SQLSyntaxErrorException
전체 내용은 아래와 같다.
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Oct 14 02:42:30 KST 2021
There was an unexpected error (type=Internal Server Error, status=500).
### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'example.t_board' doesn't exist ### The error may exist in file [C:\Users\takur\Desktop\workspace\eclipse-workspace2\board\bin\main\mapper\sql-board.xml] ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT board_idx, title, hit_cnt, created_datetime FROM t_board WHERE deleted_yn = 'N' ORDER BY board_idx DESC ### Cause: java.sql.SQLSyntaxErrorException: Table 'example.t_board' doesn't exist ; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table 'example.t_board' doesn't exist
org.springframework.jdbc.BadSqlGrammarException: ### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table 'example.t_board' doesn't exist ### The error may exist in file [C:\Users\takur\Desktop\workspace\eclipse-workspace2\board\bin\main\mapper\sql-board.xml] ### The error may involve defaultParameterMap ### The error occurred while setting parameters ### SQL: SELECT board_idx, title, hit_cnt, created_datetime FROM t_board WHERE deleted_yn = 'N' ORDER BY board_idx DESC ### Cause: java.sql.SQLSyntaxErrorException: Table 'example.t_board' doesn't exist
말 그대로 존재하지 않는 테이블에 접근해서 생기는 간단한 SQL syntax 오류이다.
이번 경우에는 application.properties에 입력한 jdbc-url에서 접근할 db 경로를 재수정해주면 제대로 동작한다.
기존에 저 부분이 example로 되어 있었다.
유의해서 경로를 지정하도록 하자.
'Spring > Spring 참고 내용' 카테고리의 다른 글
Comments