본문 바로가기

IT STUDY

Spring , mybatis org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 해결

반응형

스프링 게시판 공부 중 

 

controller에서 mybaits 로 쿼리 매핑중 다음과 같은 오류 발생

 

org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 

 

 

구글링해보니까 많은 방법이 있는데 나 같은 경우

xml 매핑할 때  resultType 를 안해주어서 발생했다.

처음에 String, int, Integer 막 넣어보다가 결국 처음에 선언했던 VO 경로를 직접넣어주니 해결됨!!

 

처음에 mapper.xml 이 다음과 같이 되어있었는데

 

이렇게 변경해주면된다!!!

 

 

반응형