Spring_(4)屬性配置細節之一
阿新 • • 發佈:2018-11-17
Spring_(4)屬性配置細節
字面值
- 字面值:可用字串表示的值,可以通過元素標籤或value屬性進行注入。
- 基本資料型別及其封裝類、String等型別都可以採取字面值注入的方式。
- 若字面值中包含特殊字元,可以使用<![CDATA[[這裡填特殊字元]]>把字面值包裹起來。
引用其他Bean
- 組成應用程式的Bean經常需要相互協作以完成應用程式的功能。要使Bean能夠相互訪問,就必須在Bean配置檔案中指定對Bean的利用。
- 在Bean的配置檔案中,可以通過元素****或ref屬性為Bean的屬性或構造器引數指定對Bean的引用。
- 也可以在屬性或構造器裡包含Bean的宣告,這樣的Bean稱為內部Bean
注入引數詳解:null值和級聯屬性
- 可以使用專用的元素標籤為Bean的字串或其他物件型別的屬性注入null值
- 和Struts.Hibernate等框架一樣,Spring支援級聯屬性的配置
例子程式
程式基本結構
Car.java
package com.spring.beans;
public class Car {
private String brand;
private String corp;
private double price;
private int maxSpead;
public Car(String brand,String corp,double price){
super();
this.brand = brand;
this.corp = corp;
this.price = price;
}
public Car(String brand,String corp,int maxSpead){
super();
this.brand = brand;
this .corp = corp;
this.maxSpead = maxSpead;
}
public void setPrice(double price) {
this.price = price;
}
public void setMaxSpead(int maxSpead) {
this.maxSpead = maxSpead;
}
@Override
public String toString() {
return "Car{" +
"brand='" + brand + '\'' +
", corp='" + corp + '\'' +
", price=" + price +
", maxSpead=" + maxSpead +
'}';
}
}
HelloWorld.java
package com.spring.beans;
public class HelloWorld {
private String name;
public void setName(String name){
System.out.println("setName"+name);
this.name = name;
}
public void hello(){
System.out.println("hello:"+ name);
}
public HelloWorld(){
System.out.println("HelloWorld Constractor...");
}
}
Person.java
package com.spring.beans;
public class Person {
private String name;
private int age;
private Car car;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public Car getCar() {
return car;
}
public void setCar(Car car) {
this.car = car;
}
@Override
public String toString() {
return "Person{" +
"name='" + name + '\'' +
", age=" + age +
", car=" + car +
'}';
}
public Person(){
}
public Person(String name,int age,Car car){
super();
this.name = name;
this.age = age;
this.car = car;
}
}
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--配置bean
class:bean 的全類名, 通過反射的方式 在IOC容器中建立Bean, 所以要求Bean中必須有無引數的構造器
id: 標識容器中的 bean, id 唯一,
-->
<bean id ="helloworld" class="com.spring.beans.HelloWorld">
<property name="name" value="Spring"></property><!--這個是通過setter方法進行最常用的屬性注入-->
</bean>
<!--通過構造方法來配置bean的屬性-->
<bean id="car" class="com.spring.beans.Car">
<constructor-arg value="Audi" index="0"></constructor-arg>
<constructor-arg value="ShangHai" index="1"></constructor-arg>
<constructor-arg value="300000" index="2"></constructor-arg>
</bean>
<!--使用構造器注入屬性值可以指定引數的位置和型別!以區分過載的構造器!-->
<bean id="car2" class="com.spring.beans.Car">
<constructor-arg value="Baoma" type="java.lang.String"></constructor-arg>
<!--如果字面值包含特殊字元可以使用<![CDATA[]]>包裹起來-->
<!--屬性值也可以直接用<value>標籤配置-->
<constructor-arg type="java.lang.String">
<value><![CDATA[<ShangHai^>]]></value>
</constructor-arg>
<constructor-arg type="int">
<value>250</value>
</constructor-arg>
</bean>
<bean id="person" class="com.spring.beans.Person">
<property name="name" value="Tom"></property>
<property name="age" value="24"></property>
<!--可以使用 property 的 ref 屬性建立 bean 之間的引用關係. -->
<!--<property name="car" ref="car2"></property>-->
<!--<property name="car">
<ref bean="car2"/>
</property>-->
<!--內部bean,不能被外部引用,只能在內部使用-->
<property name="car">
<bean class="com.spring.beans.Car">
<constructor-arg value="Ford"></constructor-arg>
<constructor-arg value="Changan"></constructor-arg>
<constructor-arg value="200000" type="double"></constructor-arg>
</bean>
</property>
<property name="car.maxSpead" value="260"></property>
</bean>
<bean id="person2" class="com.spring.beans.Person">
<constructor-arg value="Jerry"></constructor-arg>
<constructor-arg value="25"></constructor-arg>
<!--<constructor-arg ref="car"></constructor-arg>-->
<!--測試賦值null-->
<!--<constructor-arg><null/></constructor-arg>-->
<constructor-arg ref="car"></constructor-arg>
<!--為級聯屬性賦值,注意:屬性需要先初始化後才可以為級聯屬性賦值,否則會有異常,和Struts不同-->
<property name="car.maxSpead" value="250"></property>
</bean>
<!--<bean id ="helloworld2" class="com.spring.beans.HelloWorld">
<property name="name" value="Spring"></property>
</bean>-->
</beans>
Main.java
package com.spring.beans;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
public static void main(String[] args){
/* //建立HelloWorld的一個物件
HelloWorld helloWorld = new HelloWorld();
//為name 屬性賦值
helloWorld.setName("atguigu");*/
//1.建立Spring 的IOC容器物件
//ApplicationContext 代表IOC容器,實際上是一個藉口
//ClassPathXmlApplicationContext: 是ApplicationContext 介面的實現類,該實現類從類路勁下來載入配置檔案
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
//2.從IOC容器中獲取Bean 例項
//利用id定位到IOC容器中的bean
HelloWorld helloWorld = (HelloWorld) ctx.getBean("helloworld");
//利用型別返回IOC容器中的Bean,但要求IOC容器中必須只能由一個該型別的Bean
//HelloWorld helloWorld = ctx.getBean(HelloWorld.class);//要求這個類在配置檔案中是唯一的
System.out.println(helloWorld);
Car car = (Car)ctx.getBean("car");
System.out.println(car);
car = (Car) ctx.getBean("car2");
System.out.println(car);
Person person = (Person) ctx.getBean("person");
System.out.println(person);
Person person2 = (Person) ctx.getBean("person2");
System.out.println(person2);
//3.呼叫hello方法
//helloWorld.hello();
}
}