@Autowired
private BrandMapper brandMapper;
以上代码brandMapper经常爆红,程序却能正常运行,经度娘搜索后得出完美解决方案。网址链接:https://blog.csdn.net/Coder_Knight/article/details/83999139
Mapper文件中添加@Repository注解。
例如
@Repository
public interface BrandMapper extends Mapper<Brand> {
}
@Autowired
private BrandMapper brandMapper;
以上代码brandMapper经常爆红,程序却能正常运行,经度娘搜索后得出完美解决方案。网址链接:https://blog.csdn.net/Coder_Knight/article/details/83999139
Mapper文件中添加@Repository注解。
例如
@Repository
public interface BrandMapper extends Mapper<Brand> {
}
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。