CODEDRAGON ㆍDevelopment/Spring
오류메시지
java.lang.NoSuchMethodError: org.springframework.core.convert.support.DefaultConversionService.getSharedInstance()Lorg |
|
BDao.java:136
ArrayList<BDto> dtos = null; String query = "SELECT bId, bName, bTitle, bContent, bDate, bHit, bGroup, bStep, bIndent " + "FROM mvcboard ORDER BY bGroup DESC, bStep ASC"; dtos = (ArrayList<BDto>)template.query(query, newBeanPropertyRowMapper<BDto>(BDto.class)); |
오류원인
spring-jdbc 의 호환버전이 맞지 않아 발생합니다.
해결방법
spring-jdbc 라이브러리의 버전을 4.3.10.RELEASE에서 4.1.4.RELEASE으로 변경합니다.
변경 전 | <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.3.10.RELEASE</version> </dependency> |
변경 후 | <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.1.4.RELEASE</version> </dependency> |
'Development > Spring' 카테고리의 다른 글
프로파일(profile) 속성을 이용한 설정 - XML 설정 파일을 이용하는 방법, JAVA 설정 파일을 이용하는 방법 (0) | 2017.09.29 |
---|---|
HelloWorld-새로운 프로젝트 생성하기, Package 생성하기, 클래스 파일 생성하기 (0) | 2017.09.23 |
리다이렉트(redirect:) 키워드 - CASE 1 - 조건을 통한 리다이렉트, CASE 2 - 실제 경로로 리다이렉트, CASE 3 - 리다이렉트를 통한 리다이렉트 (0) | 2017.09.12 |
Spring 프로젝트 명 바꾸기 (완벽하게 변경하기) (0) | 2017.09.01 |
ERROR-ProceedingJoinPoint cannot be resolved to a type 해결방법 (0) | 2017.08.25 |