Notice
Link
- Today
- Total
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 가변영역 스크롤
- ffmpeg
- Back 키 클릭 감지
- vc++
- pid 찾아 kill
- 피쉬랜드
- springboot 재가동
- sql exception
- MySQL
- reactnative
- MariaDB
- c언어
- mybatis exception
- SQL 마지막날
- SQL 첫날
- 터치좌표 view
- view 획득
- rn
- 코드로 서버 재실행
- 파티션 빠른 삭제
- springboot
- DB 계정생성
- Activity 전체화면
- CSS
- MFC
- 말줌임 CSS
- 스크롤적용
- 텍스트컬러
- CentOS
- kill -9
Archives
개발은 하는건가..
[에러] java.sql.SQLException: Out of range value for column 본문
SpringBoot , Thymeleaf
[에러] java.sql.SQLException: Out of range value for column
수동애비 2022. 3. 17. 12:10반응형
mybatis 사용 중인데 저 에러가 나와서 한참 당황했다.
보통 mapper xml 의 쿼리의 resultType 으로 지정된 타입과 쿼리 결과 값이 안맞을 때 발생하는데 이번엔 그 경우가 아니였음.
아래와 같이 DTO 을 정의하고 String 타입의 value 를 int 타입으로도 설정할 수 있는 함수를 오버로딩 해놨었는데 mapper xml 에서 쿼리 실행 후 결과를 저 놈을 통해서 할당하면서 타입이 맞지 않아 발생했던 것이다.
이 경우 뭔가 방법이 있을것 같긴한데 방법을 찾아보는 귀찮음에 비해 크게 이득이 없기에 setValue(int) 을 setIntValue(int) 로 변경하였다.
// ---- DTO Class -------
@Setter
@Getter
public class PropertyDTO {
public String key, value;
public PropertyDTO(String key, String value) {
this.key = key;
this.value = value;
}
public int getIntValue() {
int result = 0;
if (value != null) {
try {
result = Integer.valueOf(value);
} catch(Exception e) {
// Nop
}
}
return result;
}
public void setValue(int val) { <= 요놈 이름을 setIntValue 로 바꿔줘야 했다.
value = String.valueOf(val);
}
}
// ---- Mapper XML -------
<select id="getProperty" parameterType="String" resultType="PropertyDTO">
SELECT key, value FROM Properties
</select>
'SpringBoot , Thymeleaf' 카테고리의 다른 글
[Springboot] @ControllerAdvice 를 통해 global ModelAttribute 적용하기 (0) | 2022.04.07 |
---|---|
Thymeleaf 기본 정리 (0) | 2022.03.18 |
SpringBoot 오류 페이지 설정 관련. (0) | 2022.03.10 |
[에러] log4j-slf4j-impl cannot be present with log4j-to-slf4j (0) | 2022.03.04 |
Springboot 프로젝트명, 패키지명 변경 (IntelliJ) (0) | 2022.03.02 |
Comments