코딩항해기
[Error/Spring] MySQL Connection Error 본문
DB연결을 하려고 하니 Connection 객체를 만들 때 에러가 발생했다.
DB가 바뀌어서 drivername 잘못 작성한 줄 알았는데 pom.xml을 보니 의존성 주입을 안했다....
너무 당연한 건데 buildpath에 너무 익숙해졌던 것 같다.
바로 pom.xml dependencies Edit Starters(intellij)에 들어가서 mysql의존성을 추가했다.
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
추가한 후에는 maven 새로고침 잊지않기
'Error solution' 카테고리의 다른 글
[Error/Spring] java.lang.NoClassDefFoundError (0) | 2024.10.08 |
---|---|
[Error/Spring] DispatcherServlet이 요청을 제대로 수행 못하는 경우 (0) | 2024.10.08 |
[Error/Spring] UnsatisfiedDependencyException (0) | 2024.10.04 |
[Error/Spring] NoSuchBeanDefinitionException (xml 어노테이션 설정 문제) (0) | 2024.10.04 |
[Error/MySQL] DBeaver 계정연결 Public Key Retrieval is not allowed (0) | 2024.10.03 |