fix: ZtUsacRepository (MyBatis Mapper) 의존성 주입 에러 수정 (MybatisConfig에 @MapperScan 추가)
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 1m52s

This commit is contained in:
jade
2026-08-04 23:56:23 +09:00
parent 96a26bc93d
commit 96e308aefb

View File

@@ -21,7 +21,11 @@ import org.springframework.context.annotation.Configuration;
*
* </pre>
*/
import org.mybatis.spring.annotation.MapperScan;
import io.shinhanlife.glow.GlowMybatisMapper;
@Configuration
@MapperScan(basePackages = "io.shinhanlife.dap", annotationClass = GlowMybatisMapper.class)
public class MybatisConfig {
@Bean