package go.kr.project.config; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Configuration; /** * 프로젝트 공통 MyBatis Mapper 스캔 설정 * *

일반 프로젝트 모듈의 Mapper 인터페이스를 스캔합니다.

* * * *

API 전용 Mapper는 ApiMapperConfig에서 별도로 스캔됩니다.

*/ @Configuration @MapperScan(basePackages = { "go.kr.project.**.mapper", "egovframework.**.mapper" }) public class ProjectMapperConfig { }