IDEA在编辑时提示could not autowire

在开发中我再applicationContext-dao.xml中加入了mapper扫描器

    
    
        
        
        
        
    

但是在编辑一个Service中注入mapper会提示could not autowire,但是可以正常执行的。

public class ItemsServiceImpl implements com.qianlv.ssmdemo.service.ItemsService{

    @Autowired
    ItemsMapperCustom itemsMapperCustom;

    public List findItemsList(ItemsQueryVo itemsQueryVo) throws Exception {
        return itemsMapperCustom.findItemsList(itemsQueryVo);
    }

}
我们需要改一下IDEA的设置

IDEA在编辑时提示could not autowire_第1张图片

将最右边的Serverity改为Warning

你可能感兴趣的:(IntelliJ,IDEA)