Inflearn Community Q&A
2강에 setMapperLocations 에 에러
Written on
·
788
0
The method setMapperLocations(Resource[]) in the type SqlSessionFactoryBean is not applicable for the arguments (Resource); 는 어떻게 해결 하나요?
spring-boot
Answer 1
1
songjava
Instructor
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
factory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/sql/*.xml"))
이렇게 사용하시면 오류가 해결되실거에요.





감사합니다