Spring 3.x + Mybatis 연동 오류
org.apache.ibatis.type.TypeException : Could not resolve type alias 'board'.
Mybatis 환경설정 오류!!!
type 을 정의해 줘야 한다.
<typeAliases>
~~~ 생략 ~~~
<typeAlias type="com.test.domain.Board" alias="board"/>
</typeAliases>
'Framework' 카테고리의 다른 글
[Spring, Mybatis] Error setting null for parameter #3 with JdbcType OTHER (0) | 2015.02.17 |
---|---|
[Spring] Error creating bean with name 'sampleBean': Injection of resource dependencies failed; (0) | 2015.01.27 |
[Spring] Interceptor 를 설정(로그인 체크) (1) | 2014.12.10 |
[Spring] spring 3.1 을 3.2 로 올리는 방법 (maven) (0) | 2014.12.10 |
[Spring] nested exception is java.lang.NullPointerException (0) | 2014.12.09 |