인프런 커뮤니티 질문&답변

강프로그래머님의 프로필 이미지

작성한 질문수

스프링 DB 2편 - 데이터 접근 활용 기술

MyBatis 적용2 - 설정과 실행

[해결방법] Could not autowire. No beans of 'ItemMapper' type found. 오류

작성

·

164

0

아래 코드 추가

@MapperScan("hello.itemservice.repository.mybatis")

 

@Configuration
@RequiredArgsConstructor
@MapperScan("hello.itemservice.repository.mybatis")
public class MyBatisConfig {
    private final ItemMapper itemMapper;

    @Bean
    public ItemService itemService() {
        return new ItemServiceV1(itemRepository());
    }

    @Bean
    public ItemRepository itemRepository() {
        return new MyBatisItemRepository(itemMapper);
    }
}

답변 1

0

안녕하세요. 일어나코딩해야지님

정보 공유 감사합니다 :)