4mybatis-plus–mapper使用报红(错误提示)的细节处理

  • Post author:
  • Post category:其他



基础操作,不应该记录。。。。。。


方法一:

//这一句份重要,ProductMapper,不报红
@Component(value = "ProductMapper")
public interface ProductMapper extends BaseMapper<Product> {

}

否则使用的时候会报红

    @Autowired
    private ProductMapper productMapper;

方法二:

这才是正确用法

    @Resource
    private ProductMapper productMapper;



版权声明:本文为chencaw原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。