인프런 커뮤니티 질문&답변
2강에 setMapperLocations 에 에러
작성
·
781
0
The method setMapperLocations(Resource[]) in the type SqlSessionFactoryBean is not applicable for the arguments (Resource); 는 어떻게 해결 하나요?
답변 1
1
송자바코딩
지식공유자
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
factory.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("classpath:mybatis/sql/*.xml"))
이렇게 사용하시면 오류가 해결되실거에요.





감사합니다