标签:getname port system tca spring 3.3 spi amp nfa
1.1 spring 是一个开源框架
1.2 spirng 为简化企业级应用开发而生,使用 spring 可以使简单的 JavaBean 实现以前只有 EJB 才能实现的功能
1.3 spring 是一个 IOC(DI) 和 AOP 容器框架
2.1 HelloWorld.java
package com.oneline.spring.day01; public class HelloWorld { private String name; public void setName(String name){ this.name=name; } public void hello(){ System.out.println("hello:"+name); } }
2.2 Main.java
package com.oneline.spring.day01; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main { public static void main(String[]args){ // 1.创建 Spring 的 IOC 容器对象 ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml"); // 2.从 IOC 容器中获取 Bean 的实例 HelloWorld helloWorld=(HelloWorld) ctx.getBean("helloWorld"); // 3.调用 hello 方法 helloWorld.hello(); } }
2.3 applicationContext.xml
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <!-- 配置bean --> <bean id="helloWorld" class="com.oneline.spring.day01.HelloWorld"> <property name="name" value="Spring"></property> </bean> </beans>
2.3.1 class: bean 的全类名,通过反射的方式中IOC容器中创建Bean,所以要求Bean中必须有无参数的构造器
2.3.2 id:标识容器中的bean
3.1 BeanFactory:IOC 容器的基本实现
3.2 ApplicationContext:提供类更多的高级特性,是BeanFactory的子接口
3.3 BeanFactory 是 Spring 框架的基础设施,面向Spring本身,ApplicationContext 面向使用Spring框架的开发者,几乎所有的应用场合都直接使用ApplicationContext 而并非底层的 BeanFactory
3.4 无论使用何种方式,配置文件时相同的
4.1 通过set方法注入,最常用的注入方式
<!-- 通过 set 方法来配置 bean 的属性 --> <property name="name" value="Spring"></property>
4.2 通过构造方法来注入
4.2.1 Car.java
package com.oneline.spring.day01; public class Car { private String name; private Integer price; public Car(String name, Integer price) { super(); this.name = name; this.price = price; } @Override public String toString() { return "Car [name=" + name + ", price=" + price + "]"; } }
<!-- 通过构造方法来配置 bean 的属性 --> <bean id="car" class="com.oneline.spring.day01.Car"> <constructor-arg value="Audi" index="0" ></constructor-arg> <constructor-arg value="3000" type="java.lang.Integer"></constructor-arg> </bean> <!-- 如果注入的属性中含有特殊字符,参考以下写法 --> <bean id="car" class="com.oneline.spring.day01.Car"> <constructor-arg index="0" > <value><![CDATA[<ShangHai>]]></value> </constructor-arg> <constructor-arg type="java.lang.Integer"> <value>250</value> </constructor-arg> </bean>
PS:constructor-arg 标签的属性详解, value:注入属性的属性值 ,index:注入属性的位置, type:注入属性的类型(可以利用这些属性值调用指定的构造器)
4.3 类之间相互引用的配置
package com.oneline.spring.day01; public class Person { private String name; private Integer age; private Car car; public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer 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 + "]"; } }
<bean id="person" class="com.oneline.spring.day01.Person"> <property name="name" value="Tom"></property> <property name="age" value="24"></property> <!-- 可以使用property的ref属性来建立bean之间的引用关系 --> <property name="car" ref="car2"></property> </bean>
标签:getname port system tca spring 3.3 spi amp nfa
原文地址:http://www.cnblogs.com/q151860/p/6537614.html