mybatis(2)
-
[MyBatis] org.apache.ibatis.exceptions.PersistenceException:
해결방법 같이 조건문의 한글자부분을 " " 로 묶어주면 된다. 같이 비교 문자가에 여러 글자인 경우에는 ' ' 를 사용해도 에러가 발생되지 않는다. 같이 ' ' 안의 비교 문자가 한글자인 경우는 Exception이 발생하게 된다. 한 문자만 ' ' 로 감싸게 되면 이를 숫자로 인식하게 되어 Exception이 발생한다고 한다. 더보기 ERROR [cohttp://m.app.sechan.cmmn.com.service.impl.mainPageServiceImpl] nested exception is org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: java.lang.NumberFormatExcepti..
2024.03.20 -
[MyBatis] org.postgresql.util.PSQLException: The column index is out of range: 해결방법
/* updateUser */ UPDATE tb_user_info SET user_name = #{userName} /* , email=#{email} */ , upd_dt= NOW() , upd_id= #{sUserId} WHERE user_seq= CAST(#{userSeq} AS INTEGER) Mybatis XML에다가 작성을 하고 쿼리를 수행하면 mybatis는 예약어인 모든 #{}에 바인딩을 시도하는데 주석까지 세는데 바인딩 할 수있는 #{}수가 부족해서 생기는 오류라고 합니다. 더보기 org.postgresql.util.PSQLException: The column index is out of range: 4, number of columns: 3. at org.postgresql.core...
2022.10.28