아무거나

[Maven] ERROR : Error Message: Type interface com.deploy.model.HistoryMapper is not known to the MapperRegistry. 본문

Java/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>​ 

반응형
Comments