반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 무료개발강의
- 브루트포스
- 시간 복잡도
- 빅오 표기법
- 동적계획법
- 무료코딩강의
- 개발공부
- 백준단계별로풀어보기
- dfs
- 자바
- 백준
- 다이나믹 프로그래밍
- 백준자바
- 알고리즘공부
- Java개념
- 백준알고리즘
- 백준9단계
- ☆
- BFS
- 자바개념
- 백트래킹
- 자바의정석
- java
- 자바공부
- ★
- dp
- 자바의정석연습문제
- 알고리즘
- 코딩공부
- 자바의정석연습문제풀이
Archives
- Today
- Total
더 많이 실패하기
org.apache.ibatis.binding.bindingexception: attempted to return null from a method with a primitive return type (int) 본문
정보/오류 예외
org.apache.ibatis.binding.bindingexception: attempted to return null from a method with a primitive return type (int)
김발자~ 2023. 2. 7. 15:21반응형
스프링 부트 프로젝트 중
org.apache.ibatis.binding.bindingexception: Mapper method '경로' attempted to return null from a method with a primitive return type (int)
발생
resultType을 int가 아닌 Integer로 바꾸라는 말이 많았으나..
내 경우 mapper.xml에서 update 쿼리를 <select id=""> </select>로 잘못 써서 생긴 문제였다
쿼리를 한 번 더 확인하기..
반응형
'정보 > 오류 예외' 카테고리의 다른 글
Comments