1. 程式人生 > >IntelliJ idea 報錯:Could not autowire,no beans of "XXX" type found

IntelliJ idea 報錯:Could not autowire,no beans of "XXX" type found

pan 踩坑 blog beans tail war 詳情 參考 spec

Question:使用 IDEA 開發Java web項目時,在註解 @Autowired 裝配 dao 時顯示:Could not autowire,no beans of "XXX" type found。

Measures:① 在@Autowired 註解下面添加上 @SuppressWarnings("SpringJavaAutowiringInspection");

      ② 降低 Autowired 檢測的級別,將 Severity 的級別由之前的 error 改成 warning 或其它可以忽略的級別。

       詳情如下:

技術分享圖片

推薦使用第一種,更合理。

踩坑參考:

    http://blog.csdn.net/u010334295/article/details/78076510

IntelliJ idea 報錯:Could not autowire,no beans of "XXX" type found