Could not autowire. No beans of 'LibraryClassInfoMapper' type found.
时间: 2023-09-23 19:05:49 浏览: 53
spring-autowire.zip
回答: 这个错误是因为在自动装配时找不到类型为'LibraryClassInfoMapper'的bean。要解决这个问题,需要在对应的类上添加注解,比如@Service、@Repository或@Component,以将该类注册到Spring容器中。只有在类被正确注册后,@Autowired才能找到对应的bean进行自动装配。[1]
阅读全文