MVC2 게시판에 i-batis 적용 중 다음과 같은 에러가 발생했다.
com.ibatis.common.xml.NodeletException ... 에러 로그에서 유독 눈에 띄는 부분은 transactionManager
인터넷 검색을 해보니,
기존 소스에 <transactionManager>, <dataSource> 부분 설정이 잘못되어 있었다.
그래서 해당 부분 내용을 아래와 같이 변경해 주니, 정상적으로 i-batis 초기 설정을 완료할 수 있었다.
<transactionManager type="JDBC" commitRequired="false">
<dataSource type="SIMPLE">
<관련 내용 추가>
이렇다고 합니다.
개발자 여러분, 검색을 생활화 합시다. ^^
'Dev. Debug > 프로그램' 카테고리의 다른 글
mapped statements collection does not contain value for (0) | 2016.03.06 |
---|---|
Error setting null for parameter #2 with JdbcType OTHER (0) | 2016.02.06 |
ArrayIndexOutOfBoundsException - 배열 크기(범위) 에러 (0) | 2015.12.17 |
[펌] 자바 문법 에러 No enclosing instance of type ttt (1) | 2015.11.18 |
Unhandled exception type Exception (0) | 2015.11.09 |