티스토리 뷰
The type org.springframework.dao.support.DaoSupport cannot be resolved. It is indirectly referenced from required .class files.
spring-jdbc 라이브러리를 추가하지 않아 발생하는 오류이다. pom.xml에 추가한다.
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>${org.springframework-version}</version> </dependency>
댓글