230616

보트·2023년 6월 16일
0

Spring

목록 보기
4/27

SQL 연결

문제

2023-06-16T12:18:34.437+09:00 ERROR 13480 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed: org.springframework.jdbc.BadSqlGrammarException: PreparedStatementCallback; bad SQL grammar []] with root cause

java.sql.SQLSyntaxErrorException: Unknown column 'title' in 'field list'

해결

spring.datasource.url=jdbc:mysql://localhost:3306/memos
spring.datasource.username=root
spring.datasource.password=1234
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

memos라고 테이블을 만들어놓고 application.properties에서는 memo라고 작성했다.
그래서 title이라는 칼럼이 없다고 떴던 것이었다.
memos라고 바꾸니

시각 제외하고 잘 뜨는 것을 확인할 수 있었다.

그리고 sql 전에 또 pid를 통한 taskkill을 진행해야했다.

수정, 삭제

문제

.w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'text/plain;charset=UTF-8' is not supported]

profile
일주일에 한 번

0개의 댓글