일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- jenkins
- javascript
- IntelliJ
- redis
- devops
- tool
- MySQL
- Spring Batch
- Spring
- Gradle
- elasticsearch
- it
- Spring Boot
- laravel
- php
- Git
- jsp
- 맛집
- ReactJS
- Web Server
- Design Patterns
- java
- db
- AWS
- 요리
- springboot
- linux
- Oracle
- JVM
- ubuntu
Archives
- Today
- Total
아무거나
[Maven] ERROR : Error Message: Type interface com.deploy.model.HistoryMapper is not known to the MapperRegistry. 본문
Java & Kotlin/Gradle & Maven
[Maven] ERROR : Error Message: Type interface com.deploy.model.HistoryMapper is not known to the MapperRegistry.
전봉근 2019. 3. 8. 20:13반응형
*** 오류
ERROR : Error Message: Type interface com.deploy.model.HistoryMapper is not known to the MapperRegistry.
(.xml파일이 읽히지 않을때 -> 즉, 기본적으로 xml파일이 포함되지 않을 때)
메이븐 사용시 pom.xml 내의
<build>아래 추가
[코드내용]
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
반응형
'Java & Kotlin > Gradle & Maven' 카테고리의 다른 글
[gradle] dependency추가해도 계속 안받아지는경우, 캐시 삭제 (0) | 2019.08.17 |
---|---|
[maven] maven 시작하기 (0) | 2019.06.24 |
[Maven] pom.xml에서 packaging에서 Execution default-testResources of goal ... 에러 (0) | 2019.03.08 |
[Maven] build encoding error (0) | 2019.03.08 |
Gradle 멀티 프로젝트 구성 (0) | 2018.09.19 |
Comments