자바(Java)

org.apache.ibatis.binding.BindingException: Type interface Mapper is not known to the MapperRegistry

xemaker 2025. 4. 23. 17:38

org.apache.ibatis.binding.BindingException: Type interface Mapper is not known to the MapperRegistry

BindingException이면 바인딩을 해줘야 하는데 알 수 없다는 것이다. 알수없다는 얘기는 있어야 할곳에 없으니 알 수 없다는 것이다.

그럼 어디에 있어야 하는걸까

찾아보니

<configuration>

  <mappers>

    <mapper resource="com.Mapper.xml"/>

  <mappers>

</configuraion>

 

SqlMapConfig.xml 파일이 있는데 여기에 위에처럼 선언이 되어 있어야 하는데 선언이 안되서 발생한 에러였다.