spring boot관련 질문있어요..
@Slf4j
@SuppressWarnings("unchecked")
@RestController
@RequestMapping(value = "/house")
public class HouseController
위와 같이 컨트롤러가 있고,
@Repository
public abstract class IN001TMapper
위에는 매퍼인데, @Autowired되어 있습니다
아래와 같은 에러가 뜹니다. 아무리 구글링해도 안나와요 도움부탁드립니다
Field in001tMapper in HouseController required a bean of type 'com.IN001TMapper' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'IN001TMapper' in your configuration.
(패키지네임은제거했습니다)