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