通過實(shí)例學(xué)習(xí)Spring @Required注釋原理
@Required 注釋應(yīng)用于 bean 屬性的 setter 方法,它表明受影響的 bean 屬性在配置時(shí)必須放在 XML 配置文件中,否則容器就會(huì)拋出一個(gè) BeanInitializationException 異常。下面顯示的是一個(gè)使用 @Required 注釋的示例。
示例:讓我們使 Eclipse IDE 處于工作狀態(tài),請(qǐng)按照下列步驟創(chuàng)建一個(gè) Spring 應(yīng)用程序:
步驟 描述1 創(chuàng)建一個(gè)名為 SpringExample 的項(xiàng)目,并且在所創(chuàng)建項(xiàng)目的 src 文件夾下創(chuàng)建一個(gè)名為 com.tutorialspoint 的包。2 使用 Add External JARs 選項(xiàng)添加所需的 Spring 庫(kù)文件,就如在 Spring Hello World Example 章節(jié)中解釋的那樣。3 在 com.tutorialspoint 包下創(chuàng)建 Java 類 Student 和 MainApp。4 在 src 文件夾下創(chuàng)建 Beans 配置文件 Beans.xml。5 最后一步是創(chuàng)建所有 Java 文件和 Bean 配置文件的內(nèi)容,并且按如下解釋的那樣運(yùn)行應(yīng)用程序。下面是 Student.java 文件的內(nèi)容:
package com.tutorialspoint;import org.springframework.beans.factory.annotation.Required;public class Student {private Integer age;private String name;@Requiredpublic void setAge(Integer age) {this.age = age;}public Integer getAge() {return age;}@Requiredpublic void setName(String name) {this.name = name;}public String getName() {return name;}}下面是 MainApp.java 文件的內(nèi)容:
package com.tutorialspoint;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class MainApp {public static void main(String[] args) {ApplicationContext context = new ClassPathXmlApplicationContext('Beans.xml');Student student = (Student) context.getBean('student');System.out.println('Name : ' + student.getName() );System.out.println('Age : ' + student.getAge() );}}下面是配置文件 Beans.xml: 文件的內(nèi)容:
<?xml version='1.0' encoding='UTF-8'?>
<beans xmlns='http://www.springframework.org/schema/beans'xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'xmlns:context='http://www.springframework.org/schema/context'xsi:schemaLocation='http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsd'>
<context:annotation-config/>
<!-- Definition for student bean --><bean class='com.tutorialspoint.Student'><property name='name' value='Zara' />
<!-- try without passing age and check the result --><!-- property name='age' value='11'--></bean>
</beans>一旦你已經(jīng)完成的創(chuàng)建了源文件和 bean 配置文件,讓我們運(yùn)行一下應(yīng)用程序。如果你的應(yīng)用程序一切都正常的話,這將引起 BeanInitializationException 異常,并且會(huì)輸出一下錯(cuò)誤信息和其他日志消息:
Property ’age’ is required for bean ’student’下一步,在你按照如下所示從 “age” 屬性中刪除了注釋,你可以嘗試運(yùn)行上面的示例:
<?xml version='1.0' encoding='UTF-8'?><beans xmlns='http://www.springframework.org/schema/beans' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:context='http://www.springframework.org/schema/context' xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd'> <context:annotation-config/> <!-- Definition for student bean --> <bean class='com.tutorialspoint.Student'> <property name='name' value='Zara' /> <property name='age' value='11'/> </bean></beans>
現(xiàn)在上面的示例將產(chǎn)生如下結(jié)果:
Name : ZaraAge : 11
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. ASP中實(shí)現(xiàn)字符部位類似.NET里String對(duì)象的PadLeft和PadRight函數(shù)2. JavaWeb Servlet中url-pattern的使用3. css代碼優(yōu)化的12個(gè)技巧4. 微信開發(fā) 網(wǎng)頁(yè)授權(quán)獲取用戶基本信息5. 詳解瀏覽器的緩存機(jī)制6. jsp實(shí)現(xiàn)登錄驗(yàn)證的過濾器7. jsp+servlet簡(jiǎn)單實(shí)現(xiàn)上傳文件功能(保存目錄改進(jìn))8. asp批量添加修改刪除操作示例代碼9. msxml3.dll 錯(cuò)誤 800c0019 系統(tǒng)錯(cuò)誤:-2146697191解決方法10. HTML5 Canvas繪制圖形從入門到精通
