250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JDBC
- MySQL
- Eclipse
- Open Source
- AJAX
- git
- Source
- Thymeleaf
- ubuntu
- Core Java
- Docker
- error
- JavaScript
- Exception
- Spring Boot
- Python
- spring
- Tomcat
- MSSQL
- SpringBoot
- jpa
- 설정
- 문서
- IntelliJ
- oracle
- 오픈소스
- maven
- STS
- myBatis
- PostgreSQL
Archives
- Today
- Total
헤르메스 LIFE
[Exception] class path resource [mapper/] cannot be resolved to URL because it does not exist 본문
Exception
[Exception] class path resource [mapper/] cannot be resolved to URL because it does not exist
헤르메스의날개 2021. 7. 17. 01:12728x90
Open-JDK 11
Spring Boot
IntelliJ 를 사용해서 프로젝트를 테스트 하던 중 아래와 같은 오류가 발생하였습니다.
내용은 mapper 폴더를 못 찾는다는 내용입니다.
Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.FileNotFoundException: class path resource [mapper/] cannot be resolved to URL because it does not exist
/mapper 폴더가 target/classes 폴더로 복사되지 않아서 발생한 문제입니다.
$> mvn compile 하면 복사된 것을 확인 할 수 있습니다.
Spring Boot 도 정상적으로 실행됩니다. 자동 복사는 안되는 걸까요.. ^^;;
728x90