일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- @Table
- RFC723x
- HTTPMESSAGE
- SpringBoot
- gitreset
- DB방언
- org.apache.ibatis.binding.BindingException
- 무상태프로토콜
- anyMatch
- 매핑정보가없는필드
- JPA
- 캐쉬가능
- @Entity
- Transaction not successfully started
- 네이버 연결된 서비스
- 김영한JPA
- Git
- HTTP3
- fixedDelay
- 멱등활용
- 자바ORM표준프로그래밍
- initialDelay
- 데이터베이스 방언
- 네이버로그인API
- gitrevert
- http
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- KAKAOLOGINAPI
- hibernate.dialect
- Invalid bound statement (not found)
Archives
- Today
- Total
twocowsong
Invalid bound statement (not found) 본문
ERROR TYPE : org.apache.ibatis.binding.BindingException
repository 파일에 메소드명과 sql.xml 아이디가 맵핑이 되지 않은 상황입니다.
@Mapper
@Repository
public interface CodeRepository {
ArrayList<CommCode> getCommCode(CommCodePageInfo commCodePageInfo);
}
레파지토리 파일에서 메소드명이 해당 맵핑된 xml에서 id가 저렇게 없는경우 찾지못하여 발생합니다.
<select id="" parameterType="com.twocow.song.mvc.admin.vo.code.CommCodePageInfo"
resultType="com.twocow.song.mvc.admin.vo.code.CommCode">
...
</select>
'IT > Error' 카테고리의 다른 글
Transaction not successfully started (0) | 2022.05.07 |
---|