본문 바로가기
BackEnd FrontEnd/Spring

java.sql.SQLException: Unknown system variable 'query_cache_size' 오류가 날때

by forkballpitch 2019. 12. 10.
728x90
728x90

아래 내용을 pom.xml에 추가해준다.

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.45</version>
    <scope>runtime</scope>
</dependency>

https://stackoverflow.com/questions/49984267/java-sql-sqlexception-unknown-system-variable-query-cache-size

728x90
728x90

'BackEnd FrontEnd > Spring' 카테고리의 다른 글

OAuth2 구현하기 & postman test  (0) 2019.12.01
IOC  (0) 2017.09.27
AOP  (0) 2017.09.27
Spring 특징  (0) 2017.09.27