@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刪除。