1. @Required注解 @Required注解應(yīng)用于bean屬性的setter方法,它表明影響的bean屬性在配置時(shí)必須放在XML配置文件中。
2. @Qualifier注解? 如果在xml中定義了一種類型的多個(gè)bean,同時(shí)在java注解中又想把其中一個(gè)bean對(duì)象作為屬性,那么此時(shí)可以使用@Qualifier加@Autowired來達(dá)到這一目的,若不加@Qualifier這個(gè)注解,在運(yùn)行時(shí)會(huì)出現(xiàn)“ No qualifying bean of type [com.tutorialspoint.Student] is defined: expected single matching bean but found 2: student1,student2”這個(gè)異常。