Monthly Archive: 8월 2019

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