springboot Could not resolve type alias

springboot embedded tomcat 에서 typealias를 사용할시 class not found가 떴음. sqlSessionFactoryBean에 아래 설정을 추가해주면 해결이 된다.
sqlSessionFactoryBean.setVfs(SpringBootVFS.class);
SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean();
factoryBean.setVfs(SpringBootVFS.class);
https://github.com/mybatis/spring-boot-starter/issues/278

You may also like...

답글 남기기

이메일은 공개되지 않습니다. 필수 입력창은 * 로 표시되어 있습니다.