1. 程式人生 > >IDEA完美解決 Could not autowire. No beans of 'xxx' type found.報錯

IDEA完美解決 Could not autowire. No beans of 'xxx' type found.報錯

對於IDEA這個提示功能,度孃的回答基本上空前的一致,大多數的說法都是要求我們把這個提示功能關閉,對此對於我這種非處女座卻有著比處女座更勝強迫症的程式設計師來說,這簡直不能忍?????

多說都是廢話,解決方法方法1:在mapper檔案上加@Repository註解,這是從spring2.0新增的一個註解,用於簡化 Spring 的開發,實現資料訪問

方法2:在mapper檔案上加@Component註解,把普通pojo例項化到spring容器中,相當於配置檔案中的<bean id="" class=""/>

對於其他的@Service @Controller該加在什麼類上就不需要我這個三腳貓來闡明瞭吧?O(∩_∩)O哈哈~