
Spring MVC + MyBatis "No primary or single public constructor found for interface java.util.List" 에러 해결 방법
·
이외/에러 모음
문제 발생 :Spring MVC에서 MyBatis를 사용하여 게시판 글 목록을 조회하는 과정에서 다음과 같은 에러가 발생에러 원인 분석:No primary or single public constructor found for interface java.util.List String이 List를 직접 매핑할 수 없다고 함. ## 2. 에러 원인 코드 : ### Controller ### Service ### ServiceImpl ### DAO ### Mapper.xml 원인 해결 코드:Controller@GetMapping(value = "/board/Board")public void boardView(ContentDTO contentDTO, Model model) throws Exception { ..