Spring课程概述:
轻量级
的Java 开发框架,由Rod Johnson 在其著作《Expert One-On-One J2EE Development and Design》中阐述的部分理念和原型衍生而来。它是为了解决企业应用开发的复杂性
而创建的。该框架的主要优势之一就是其分层架构
,分层架构允许使用者选择使用哪一个组件,同时为 J2EE 应用程序开发提供集成的框架。Spring使用基本的JavaBean来完成以前只可能由EJB完成的事情。然而,Spring的用途不仅限于服务器端的开发。从简单性
、可测试性
和松耦合
的角度而言,任何Java应用都可以从Spring中受益。Spring的核心是控制反转(IoC)
和面向切面(AOP)
。简单来说,Spring是一个分层的
JavaSE/EE full-stack(一站式)
轻量级开源框架。spring-MVC
service层:spring
dao层:hibernate,mybatis,jdbcTemplate
--> spring-data
4 + 1:4个核心jar包(beans、core、context、expression)+ 1个依赖jar包(com.springsource.org.apache.commons.logging-1.1.1.jar)
Spring核心开发包简介:
private IUserDao dao = new IUserDaoImpl();
- 在学习Spring之后,将由Spring来创建对象的实例 --> 即:IoC 控制反转(Inverse of Control)
之后需要实例对象时,从Spring工厂(容器)中获得即可,需要将实现类的全限定名称配置到xml文件中。UserService.java
package com.itheima.a_ioc;
public interface UserService {
void addUser();
}
UserServiceImpl.java
package com.itheima.a_ioc;
public class UserServiceImpl implements UserService {
@Override
public void addUser() {
System.out.println("a_ioc add user");
}
}
beans.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">
<!-- 配置service
<bean> 配置需要创建的对象
id :用于之后从Spring容器中获得实例时使用的
class :需要创建实例的全限定类名
注意:id的值刚开始学习的时候我们写userServiceId,在实际开发中写userService。
-->
<bean id="userServiceId" class="com.itheima.a_ioc.UserServiceImpl"></bean>
</beans>
TestIoC.java
package com.itheima.a_ioc;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestIoC {
@Test
public void demo01() {
// 之前开发,自己手写new出对象
UserService userService = new UserServiceImpl();
userService.addUser();
}
@Test
public void demo02() {
// 现在从spring容器中获得对象实例
// 1 、获得容器
String xmlPath = "com/itheima/a_ioc/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
// 2、获得内容 ,注意此时不需要自己new出对象了,都是从spring容器中获得
UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
}
}
class B {
private A a; // B类依赖A类,B类使用A类。
}
依赖:一个对象需要使用另一个对象。
注入:通过setter方法进行另一个对象实例设置。
class BookServiceImpl {
// 之前开发:接口 = 实现类(service和dao耦合了,写死了,知道具体的实现类是谁,那么我的具体实现类变化,那么这行代码也得跟着变)
// private BookDao bookDao = new BookDaoImpl();
// spring之后(解耦:service实现类使用了dao的接口,这样就不知道具体的实现类是谁了)
private BookDao bookDao;
setter方法
}
模拟spring执行过程
创建service实例:BookService bookService = new BookServiceImpl(); => IoC <bean>
创建dao实例:BookDao bookDao = new BookDaoImple(); => IoC
将dao设置给service:bookService.setBookDao(bookDao); => DI <property>
BookDao.java
package com.itheima.b_di;
public interface BookDao {
void save();
}
BookDaoImpl.java
package com.itheima.b_di;
public class BookDaoImpl implements BookDao {
@Override
public void save() {
System.out.println("b_di add book");
}
}
BookService.java
package com.itheima.b_di;
public interface BookService {
void addBook();
}
BookServiceImpl.java
package com.itheima.b_di;
public class BookServiceImpl implements BookService {
// 方式1:之前,接口 = 实现类
// private BookDao bookDao = new BookDaoImpl();
// 方式2:现在,接口 + setter
private BookDao bookDao;
public void setBookDao(BookDao bookDao) {
this.bookDao = bookDao;
}
@Override
public void addBook() {
this.bookDao.save();
}
}
bean.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">
<!--
模拟spring执行过程
创建service实例:BookService bookService = new BookServiceImpl(); => IoC <bean>
创建dao实例:BookDao bookDao = new BookDaoImple(); => IoC
将dao实例设置给service实例:bookService.setBookDao(bookDao); => DI <property>
<property> 用于进行属性注入
name : Bean的属性名称,通过setter方法获得
setBookDao => BookDao => bookDao
ref :另一个Bean的id值的引用
-->
<!-- 创建service实例 -->
<bean id="bookServiceId" class="com.itheima.b_di.BookServiceImpl">
<!-- 将dao实例设置给service实例 -->
<property name="bookDao" ref="bookDaoId"></property> <!-- 用于进行属性注入 -->
</bean>
<!-- 创建dao实例 -->
<bean id="bookDaoId" class="com.itheima.b_di.BookDaoImpl"></bean>
</beans>
TestDI.java
package com.itheima.b_di;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.itheima.a_ioc.UserService;
import com.itheima.a_ioc.UserServiceImpl;
public class TestDI {
@Test
public void demo01() {
// 之前开发,自己手写new出对象
// BookService bookService = new BookServiceImpl();
// bookService.addBook();
}
@Test
public void demo02() {
// 现在从spring容器中获得对象实例
// 1 、获得容器
String xmlPath = "com/itheima/b_di/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
// 2、获得内容 ,注意此时不需要自己new出对象了,都是从spring容器中获得
BookService bookService = (BookService) applicationContext.getBean("bookServiceId");
bookService.addBook();
}
}
xsd文件
位置:spring-framework-3.2.0.RELEASE\schema\beans- 步骤2、复制路径:http://www.springframework.org/schema/beans/spring-beans.xsd
- 步骤三:在`Preferences`中搜索`xml catalog`,并添加约束提示
工厂
,用于生成任意Bean。
采取延迟加载,第一次调用getBean(); 时才会初始化Bean。(即实例化对象)
采取非延时加载,当配置文件被加载时,就进行对象的实例化。
示例代码如下:
package com.itheima.b_di;
import org.junit.Test;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.ClassPathResource;
public class TestDI {
@Test
public void demo01() {
// 之前开发,自己手写new出对象
// BookService bookService = new BookServiceImpl();
// bookService.addBook();
}
@Test
public void demo02() {
// 现在从spring容器中获得对象实例,使用的是ApplicationContext
// 1 、获得容器
String xmlPath = "com/itheima/b_di/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath); // 采取非延时加载,当配置文件被加载时,就进行对象的实例化。
// 2、获得内容 ,注意此时不需要自己new出对象了,都是从spring容器中获得
BookService bookService = (BookService) applicationContext.getBean("bookServiceId");
bookService.addBook();
}
@Test
public void demo03() {
// 现在从spring容器中获得对象实例,使用的是BeanFactory,里面需要一个Resource,该Resource又是一个接口,需要找它的实现类ClassPathResource
// 1 、获得容器
String xmlPath = "com/itheima/b_di/beans.xml";
BeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource(xmlPath));
// 2、获得内容 ,注意此时不需要自己new出对象了,都是从spring容器中获得
BookService bookService = (BookService) beanFactory.getBean("bookServiceId"); // 采取延迟加载,第一次调用getBean(); 时才会初始化Bean(即实例化对象)。
bookService.addBook();
}
}
默认构造方法
实例化静态工厂方法
实例化实例工厂方法
实例化格式:
<bean id="从Spring容器中获得实例时使用的" class="需要创建实例的全限定类名"></bean>
例如:<bean id="userServiceId" class="com.itheima.a_ioc.UserServiceImpl"></bean>
示例中用到的 UserService.java 和 UserServiceImpl.java 代码同上 2.2、编写目标类 的代码,这里不再赘述!
在spring容器中进行配置:
beans.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 的方式 :使用默认构造方法实例化,即要实例化的Bean必须要提供默认构造方法 -->
<bean id="userServiceId" class="com.itheima.a_ioc.UserServiceImpl"></bean>
</beans>
测试代码:
TestIoC.java
package com.itheima.a_ioc;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestIoC {
@Test
public void demo01() {
// 之前开发,自己手写new出对象
UserService userService = new UserServiceImpl(); // 直接手动创建实例
userService.addUser();
}
@Test
public void demo02() {
// 现在从spring容器中获得对象实例
// 1 、获得容器
String xmlPath = "com/itheima/a_ioc/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
// 2、获得内容 ,注意此时不需要自己new出对象了,都是从spring容器中获得
UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
}
}
示例中用到的 UserService.java 和 UserServiceImpl.java 代码同上 2.2、编写目标类 的代码,这里不再赘述!
格式:
<bean id="" class="工厂全限定类名" factory-method="静态方法名称">
在spring容器中进行配置:
beans.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 的方式 :使用静态工厂方法实例化
将自定义的静态工厂创建的实例交给spring管理
class 自定义静态工厂全限定类名
factory-method 静态方法名
-->
<bean id="userServiceId" class="com.itheima.c_inject.b_static_factory.MyBeanFactory" factory-method="createService"></bean>
</beans>
静态工厂类代码:
package com.itheima.c_inject.b_static_factory;
public class MyBeanFactory {
/**
* 创建实例的静态工厂,所有的方法必须是静态的(static)。
*
* @return
*/
public static UserService createService() {
return new UserServiceImpl();
}
// 还有创建其他实例的静态工厂
// ......
}
测试代码:
TestStaticFactory.java
package com.itheima.c_inject.b_static_factory;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* 第二种实例化Bean 的方式 :使用静态工厂方法实例化
*
*/
public class TestStaticFactory {
@Test
public void demo01() {
// 以前:使用自定义的静态实例工厂
UserService userService = MyBeanFactory.createService();
userService.addUser();
}
@Test
public void demo02() {
// 现在:使用spring 工厂:将自定义的静态工厂创建的实例交给spring管理
String xmlPath = "com/itheima/c_inject/b_static_factory/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
// UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
}
}
注意:当使用JDK版本为1.8时,运行上面的测试代码会出现一个问题: java.lang.IllegalArgumentException,
问题解决链接:使用Junit测试一个 spring静态工厂实例化bean 的例子,所有代码都没有问题,但是出现java.lang.IllegalArgumentException异常
小结:在以后的开发中,工厂类不需要我们去手写,因为别人已经写好了,我们通过编写配置文件
,把别人写好的工厂类拿来,写上要用的方法名,然后把它生产后的实例给Spring存起来,以后我们要用什么实例,跟Spring说一下,去拿就可以了。
示例中用到的 UserService.java 和 UserServiceImpl.java 代码同上 2.2、编写目标类 的代码,这里不再赘述!
在spring容器中进行配置:
beans.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 的方式 :使用实例工厂方法实例化 -->
<!--创建工厂实例 -->
<bean id="myBeanFactoryId" class="com.itheima.c_inject.c_factory.MyBeanFactory" ></bean>
<!--通过工厂实例,获得对象 factory-bean 工厂实例名称 factory-method 普通方法名称 -->
<bean id="userServiceId" factory-bean="myBeanFactoryId" factory-method="createService"></bean>
</beans>
静态工厂类代码:
package com.itheima.c_inject.c_factory;
public class MyBeanFactory {
/**
* 创建实例的工厂,所有方法非静态
*
* @return
*/
public UserService createService() {
return new UserServiceImpl();
}
// 还有创建其他实例的工厂
// ......
}
测试代码:
TestFactory.java
package com.itheima.c_inject.c_factory;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* 第三种实例化Bean 的方式 :使用实例工厂方法实例化
* */
public class TestFactory {
@Test
public void demo01() {
// 以前:使用自定义的实例工厂
// 1、创建工厂实例
MyBeanFactory myBeanFactory = new MyBeanFactory();
// 2、通过工厂实例,获得对象
UserService userService = myBeanFactory.createService();
userService.addUser();
}
@Test
public void demo02() {
// 现在:使用spring 工厂:将自定义的实例工厂创建的实例交给spring管理
String xmlPath = "com/itheima/c_inject/c_factory/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
// UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
}
}
< bean id="xxx" class="A" >
,这句代码的意思是:Spring直接创建A的实例,并返回。具有工厂生成对象能力
,但是只能生成特定的对象。
想要生产对象的bean 必须实现FactoryBean 接口,此接口提供方法getObject(); 用于获得特定bean。
- 示例:`< bean id="xxx" class="FB">`,这句代码的意思是:Spring会先创建FB实例,然后调用getObject(); 方法,并返回方法的返回值。即相当于如下两行代码:
FB fb = new FB();
return fb.getObject();BeanFactory 和 FactoryBean 对比?
- BeanFactory :是一个生产bean的工厂,用于生成任意的bean。
- FactoryBean :是一个特殊的bean,用于生成另一个特定的bean。
- 例如:ProxyFactoryBean ,此工厂bean用于生产代理对象的实例。`< bean id="xxx" class="….ProxyFactoryBean">`,这句代码的意思是:获得代理对象的实例。即AOP使用。spring容器中bean元素id和name属性的区别?
- 在spring容器中添加以下配置:示例:
- bean节点中id和name的区别:
- 区别一:
- id : 指定唯一实例引用
- name : 可以指定多个实例引用,例如name="名称1, 名称2"
- 区别二:
- id :id的命名要满足XML对ID属性命名规范 例如:必须以字母开始,可以使用字母、数字、连字符、下划线、句话、冒号
- name : 如果Bean的名称中含有特殊字符,就需要使用name属性 例如 :
- 因为name属性可以相同,所以后出现Bean会覆盖之前出现的同名的Bean。
总结:项目开发的时候,强烈要求用id,因为id可以表示唯一引用。
- singleton 单例,默认值。
- prototype 多例,每执行一次getBean() 将获得一个实例。例如:在struts整合spring时,需要配置action为多例。配置示例:例如:
lazy-init="true"
来延迟初始化bean,这时候,只有第一次获取bean会才初始化bean。
例如:< bean id="xxx" class="cn.itheima.UserServiceImpl" lazy-init="true">
default-lazy-init="true"
,
例如:< beans default-lazy-init="true“>
- Portals使用portlets作为可插拔用户接口组件,提供信息系统的表示层。
- 作为利用servlets进行web应用编程的下一步,portlets实现了web应用的模块化和用户中心化。
示例代码如下:
示例中用到的 UserService.java 和 UserServiceImpl.java 代码同上 2.2、编写目标类 的代码,这里不再赘述!
在spring容器中进行配置:
beans.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 id="userServiceId" class="com.itheima.d_scope.UserServiceImpl" scope="prototype"></bean>
</beans>
测试代码:
TestScope.java
package com.itheima.d_scope;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestScope {
@Test
public void demo01() {
// 现在:使用spring 工厂
String xmlPath = "com/itheima/d_scope/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService1 = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
UserService userService2 = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
// 默认Bean的作用域是单例,所以打印的对象的地址是一样的
// System.out.println(userService1); // com.itheima.c_inject.d_scope.UserServiceImpl@2ac273d3
// System.out.println(userService2); // com.itheima.c_inject.d_scope.UserServiceImpl@2ac273d3
// 现在在配置文件中添加scope属性,值为prototype,此时Bean的作用域变为多例了,再次打印,输出地址不一样了
System.out.println(userService1); // com.itheima.c_inject.d_scope.UserServiceImpl@66480dd7
System.out.println(userService2); // com.itheima.c_inject.d_scope.UserServiceImpl@52a86356
}
}
setBeanName
。setBeanFactory
)或者上下文对象(setApplicationContext
)。postProcessBeforeInitialization
。afterPropertiesSet
。init
。postProcessAfterInitialization
。destroy
。customerDestroy
。目标方法执行前和执行后,将进行Bean的初始化或销毁。
示例:< bean id="xxx" class="xxx" init-method="初始化的方法名称" destroy-method="销毁的方法名称"></bean>
示例代码如下:
编写目标类代码:
UserService.java
package com.itheima.c_inject.e_lifecycle;
public interface UserService {
void addUser();
}
UserServiceImpl.java
package com.itheima.c_inject.e_lifecycle;
public class UserServiceImpl implements UserService {
@Override
public void addUser() {
System.out.println("e_lifecycle add user");
}
public void myInit() {
System.out.println("我的初始化方法");
}
public void myDestory() {
System.out.println("我的销毁方法");
}
}
编写配置文件:
beans.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">
<!--
init-method 用于配置初始化方法,用于准备数据等使用场景
destroy-method 用于配置销毁方法,用于清理资源等使用场景
-->
<bean id="userServiceId" class="com.itheima.c_inject.e_lifecycle.UserServiceImpl"
init-method="myInit" destroy-method="myDestory"></bean>
</beans>
编写测试代码:
package com.itheima.c_inject.e_lifecycle;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestLifecycle {
@Test
public void demo01() throws Exception {
// 现在:使用spring 工厂(spring 容器)
String xmlPath = "com/itheima/c_inject/e_lifecycle/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
// 要想使我的销毁方法也执行,必须要求:
// 1.容器必须先close,我的销毁方法才会执行;
// 2.必须是单例的(spring所创建该bean的实例个数只有一个)即bean中的scope配置成默认即可。
// 因为此close方法在接口 ApplicationContext 中没有定义,而在实现类中提供了该方法,我们可以使用反射,因为反射最后执行的就是实现类中的方法。
applicationContext.getClass().getMethod("close").invoke(applicationContext);
}
}
< bean class="">
这句代码的意思就是:把实现类提供给了spring容器。before() => postProcessAfterInitialization(Object bean, String beanName)
after() => postProcessBeforeInitialization(Object bean, String beanName)
A a = new A();
a = B.before(a); // 将a的实例对象传递给后处理bean,可以什么都没做,也可以做一些事情,比如:生成jdk代理对象并返回给a,这样a就从实例对象变成代理对象了,此时的a就具有了AOP功能;再比如,如果把null返回给a,再用a去调用方法,就会出现空指针异常。
a.init();
a = B.after(a);
// 以下是AOP演示:
// 我们现在在后处理Bean 代码执行完之后,把jdk代理对象返回给a。让a在调用addUser()之前先做一些事情
// 之前要做的事情
a.addUser(); // 在目标方法的前后可以做一些事情,例如:开启事务、提交事务、性能监控(前后时间)等等
// 之后要做的事情
a.destroy();
目标类示例代码如下:
UserService.java
package com.itheima.e_lifecycle;
public interface UserService {
void addUser();
}
UserServiceImpl.java
package com.itheima.e_lifecycle;
public class UserServiceImpl implements UserService {
@Override
public void addUser() {
System.out.println("e_lifecycle add user");
}
public void myInit() {
System.out.println("我的初始化方法");
}
public void myDestory() {
System.out.println("我的销毁方法");
}
}
实现类示例代码如下:
MyBeanPostProcessor.java
package com.itheima.e_lifecycle;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
public class MyBeanPostProcessor implements BeanPostProcessor {
@Override
public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
System.out.println("执行了前方法:" + beanName);
return bean;
}
@Override
public Object postProcessAfterInitialization(final Object bean, String beanName) throws BeansException {
System.out.println("执行了后方法:" + beanName);
// 传入的参数bean是我们的目标对象,此时我们的目标对象只有一个接口,那么我们的代理对象也只有一个接口
// 生成jdk代理对象
return Proxy.newProxyInstance(
MyBeanPostProcessor.class.getClassLoader(), // 代理对象
bean.getClass().getInterfaces(), // 目标对象
new InvocationHandler() {
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
System.out.println("---开启事务---");
Object obj = method.invoke(bean, args); // 执行目标方法,本例中的目标方法是addUser
System.out.println("---关闭事务---");
return obj;
}
}); // 代理的处理程序
}
}
配置文件示例代码如下:
beans.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">
<!--
init-method 用于配置初始化方法,用于准备数据等使用场景
destroy-method 用于配置销毁方法,用于清理资源等使用场景
-->
<bean id="userServiceId" class="com.itheima.e_lifecycle.UserServiceImpl"
init-method="myInit" destroy-method="myDestory"></bean>
<!-- 将后处理的实现类注册给spring -->
<bean class="com.itheima.e_lifecycle.MyBeanPostProcessor"></bean>
</beans>
测试示例代码如下:
TestLifecycle.java
package com.itheima.c_inject.e_lifecycle;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestLifecycle {
@Test
public void demo01() throws Exception {
// 现在:使用spring 工厂(spring 容器)
String xmlPath = "com/itheima/e_lifecycle/beans.xml";
ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService = (UserService) applicationContext.getBean("userServiceId");
userService.addUser();
// 要想使我的销毁方法也执行,必须要求:
// 1.容器必须先close,我的销毁方法才会执行;
// 2.必须是单例的(spring所创建该bean的实例个数只有一个)即bean中的scope配置成默认即可。
// 因为此close方法在接口 ApplicationContext 中没有定义,而在实现类中提供了该方法,我们可以使用反射,因为反射最后执行的就是实现类中的方法。
applicationContext.getClass().getMethod("close").invoke(applicationContext);
}
}
运行结果截图:
手工装配
或自动装配
。 实际应用中
建议使用手工装配
,因为自动装配会产生未知情况,开发人员无法预见最终的装配结果。Bean对象类:
public class User {
private Integer uid;
private String username;
private Integer age;
public User(Integer uid, String username) { // 构造方法一
super();
this.uid = uid;
this.username = username;
}
public User(String username, Integer age) { // 构造方法二
super();
this.username = username;
this.age = age;
}
// 省略getter 和 setter 方法
// ......
spring的配置:
<?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">
<!--6.5.1、构造方法注入
<constructor-arg> 用于配置构造方法的一个参数argument
name :参数的名称
value :设置普通数据
ref :设置引用数据,一般是另一个bean 的id值
index :参数的索引号,从0开始 。如果只有索引,匹配到了多个构造方法时,默认使用第一个。
type :确定参数类型
例如1:name属性开发中不常用,因为使用该属性需要关联要实例化对象的源码,否则name的值你就不知道。而一般开发中我们我们不会得到源码。
<constructor-arg name="username" value="李晓艺"></constructor-arg>
<constructor-arg name="age" value="26"></constructor-arg>
例如2:类型type 和 索引index (这两者结合使用)
<constructor-arg index="0" type="java.lang.String" value="1"></constructor-arg>
<constructor-arg index="1" type="java.lang.Integer" value="2"></constructor-arg>
注意:在开发中为了指定执行的是哪个构造方法,一般使用index属性和type属性结合的方式。
-->
<bean id="userId" class="com.itheima.f_xml.a_constructor.User">
<constructor-arg index="0" type="java.lang.String" value="1"></constructor-arg>
<constructor-arg index="1" type="java.lang.Integer" value="2"></constructor-arg>
</bean>
</beans>
spring的配置:
<?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">
<!--6.5.2、setter方法注入
* 注入的是普通数据 时
<property name="" value="值"></property>
等效
<property name="">
<value>值</value>
</property>
* 注入的是引用数据时
<property name="" ref="另一个bean的id"></property>
等效
<property name="">
<ref bean="另一个bean的id"></ref>
</property>
-->
<bean id="personId" class="com.itheima.f_xml.b_setter.Person">
<property name="pname" value="晓艺"></property>
<property name="age">
<value>26</value>
</property>
<property name="homeAddr" ref="homeAddrId"></property>
<property name="companyAddr">
<ref bean="companyAddrId"></ref>
</property>
</bean>
<bean id="homeAddrId" class="com.itheima.f_xml.b_setter.Address">
<property name="addr" value="山西运城"></property>
<property name="tel" value="911"></property>
</bean>
<bean id="companyAddrId" class="com.itheima.f_xml.b_setter.Address">
<property name="addr" value="百子湾"></property>
<property name="tel" value="120"></property>
</bean>
</beans>
< property name="属性名称">
,
而是在< bean p:属性名称="普通值" 和 p:属性名称-ref="引用值">
spring的配置:
<?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:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--6.5.3、P命名空间[了解]
是对"setter方法注入"进行简化,替换`<property name="属性名称">`,
而是在`<bean p:属性名称="普通值" 和 p:属性名称-ref="引用值">`
p命名空间使用前提:必须添加命名空间。
注意:开发中一般不这么用,一般用于装逼用。
-->
<bean id="personId" class="com.itheima.f_xml.c_p.Person"
p:pname="明军"
p:age="26"
p:homeAddr-ref="homeAddrId"
p:companyAddr-ref="companyAddrId">
</bean>
<bean id="homeAddrId" class="com.itheima.f_xml.c_p.Address"
p:addr="河南信阳"
p:tel="119">
</bean>
<bean id="companyAddrId" class="com.itheima.f_xml.c_p.Address"
p:addr="青年路"
p:tel="110">
</bean>
</beans>
< property>
进行统一编程,所有的内容都使用value。
格式:
#{123}、#{'bruce'}、#{2e5} :数字、字符串、科学计数法(常量)
#{beanId} :引用另一个Bean
#{beanId.propName} :引用Bean 的属性(操作数据)
#{beanId.toString()} :引用Bean 的方法(执行方法)
#{T(类).字段|方法} :引用静态方法或字段,例如:T(java.lang.Math).PI
#{3 lt 4 == 4 ge 3} :运算符支持
#{user.name matches ‘a-z{6,}’} :正则表达式支持
#{likes3} :集合支持示例代码如下:
spring的配置:
<?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">
<!--6.5.4、SpEL
<property name="cname" value="#{'Bruce'}"></property>
<property name="cname" value="#{customerId.cname.toUpperCase()}"></property>
通过另一个bean,获得属性,再调用的方法。
<property name="cname" value="#{customerId.cname?.toUpperCase()}"></property>
?. 如果对象不为null,将调用方法,为null,也去调用方法,不报错。
-->
<bean id="customerId" class="com.itheima.f_xml.d_SpEL.Customer">
<property name="cname" value="#{customerId.cname?.toUpperCase()}"></property>
<property name="pi" value="#{T(java.lang.Math).PI}"></property>
</bean>
</beans>
spring的配置:
<?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">
<!--6.5.5、集合注入
集合的注入都是给<property>添加子标签
数组:<array>
List:<list>
Set:<set>
Map:<map> 注意:map存放的是k/v键值对,使用<entry>描述
Properties 使用 <props> 和 <prop> 描述,示例:<props><prop key=""></prop></props>
普通数据 放在:<value>
引用数据 放在:<ref>
-->
<bean id="collectionDataId" class="com.itheima.f_xml.e_collection.CollectionData">
<property name="arrayData">
<array>
<value>cmj</value>
<value>lxy</value>3
<value>明军</value>
<value>晓艺</value>
</array>
</property>
<property name="listData">
<list>
<value>琴棋书画</value>
<value>撸哑铃</value>
<value>花鸟鱼虫</value>
<value>撸娃娃</value>
</list>
</property>
<property name="setData">
<set>
<value>看电影</value>
<value>运动</value>
<value>创作</value>
<value>旅行</value>
</set>
</property>
<property name="mapData">
<map>
<entry key="bruce" value="布鲁斯"></entry>
<entry>
<key><value>lucy</value></key>
<value>露西</value>
</entry>
</map>
</property>
<property name="propsData">
<props>
<prop key="处女座">内心善良</prop>
<prop key="天蝎座">宅心仁厚</prop>
<prop key="缘定今生">此生不悔</prop>
</props>
</property>
</bean>
</beans>
1. @Component 取代 <bean class=""></bean>
@Component("id的值")
2. web开发中,提供3个@Component注解衍生注解(功能一样)取代 <bean class=""></bean>
@Repository :dao层
@Service :service层
@Controller :web层
注意:SpringMVC 中推荐使用注解哦!
3. 依赖注入,给私有字段设置,也可以给setter方法设置
普通值:@Value("")
引用值:
方式1:按照【类型】注入
@Autowired
方式2:按照【类型+名称】注入1
@Autowired
@Qualifier("名称")
方式3:按照【名称】注入2
@Resource("名称")
4. 生命周期
@PostConstruct :初始化
@PreDestroy :销毁
5. 作用域
@Scope("prototype") 多例
注解使用前提,必须添加命名空间,让spring扫描含有注解类。
示例代码:
<?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.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 组件扫描:扫描含有注解的类 -->
<context:component-scan base-package="com.itheima.g_annotation.a_ioc"></context:component-scan>
</beans>
示例截图:
演示:
单例、多例、初始化、销毁
UserService.java
package com.itheima.g_annotation.c_other;
public interface UserService {
void addUser();
}
UserServiceImpl.java
package com.itheima.g_annotation.c_other;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
@Service("userServiceId") // 单例
@Scope("prototype") // 多例
public class UserServiceImpl implements UserService {
@Override
public void addUser() {
System.out.println("c_other add user");
}
@PostConstruct // 初始化
public void myInit() {
System.out.println("我的初始化方法");
}
@PreDestroy // 销毁
public void myDestory() {
System.out.println("我的销毁方法");
}
}
beans.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"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<!-- 组件扫描:扫描含有注解的类 -->
<context:component-scan base-package="com.itheima.g_annotation.c_other"></context:component-scan>
</beans>
测试代码:
TestOther.java
package com.itheima.g_annotation.c_other;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class TestOther {
@Test
public void demo01() {
// 现在:使用spring 工厂
String xmlPath = "com/itheima/g_annotation/c_other/beans.xml";
ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);
UserService userService1 = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
UserService userService2 = applicationContext.getBean("userServiceId", UserService.class); // 这种方式底层会自动转换
// 默认Bean的作用域是单例,所以打印的对象的地址是一样的
// System.out.println(userService1); // com.itheima.c_inject.d_scope.UserServiceImpl@2ac273d3
// System.out.println(userService2); // com.itheima.c_inject.d_scope.UserServiceImpl@2ac273d3
// 现在在配置文件中添加scope属性,值为prototype,此时Bean的作用域变为多例了,再次打印,输出地址不一样了
System.out.println(userService1); // com.itheima.c_inject.d_scope.UserServiceImpl@66480dd7
System.out.println(userService2); // com.itheima.c_inject.d_scope.UserServiceImpl@52a86356
applicationContext.close();
}
}