当前位置:   article > 正文

Spring基础知识

spring基础

一、SpringIoC&DI

1. spring概述

1.1 Spring是什么(理解)

Spring是分层的 Java SE/EE应用 full-stack 轻量级开源框架,以 IoC(Inverse Of Control:反转控制)和 AOP(Aspect Oriented Programming:面向切面编程)为内核。

提供了展现层 SpringMVC和持久层 Spring JDBCTemplate以及业务层事务管理等众多的企业级应用技术,还能整合开源世界众多著名的第三方框架和类库,逐渐成为使用最多的Java EE 企业应用开源框架。

1.2 Spring发展历程 (了解)

Rod Johnson ( Spring 之父)

2017 年 9 月份发布了 Spring 的最新版本 Spring5.0 通用版(GA)

1.3 Spring的优势(理解)

方便解耦,简化开发;

AOP 编程的支持;

声明式事务的支持;

方便程序的测试。

1.4 Spring的体系结构(了解)

 

 

2. spring快速入门

2.1 Spring程序开发步骤

①导入 Spring 开发的基本包坐标;

②编写 Dao 接口和实现类;

③创建 Spring 核心配置文件;

④在 Spring 配置文件中配置 UserDaoImpl;

⑤使用 Spring 的 API 获得 Bean 实例。

2.2 导入Spring开发的基本包坐标

  1. <properties>
  2. <spring.version>5.0.5.RELEASE</spring.version>
  3. </properties>
  4. <!--导入spring的context坐标,context依赖core、beans、expression-->
  5. <dependencies>
  6.    <dependency>  
  7.        <groupId>org.springframework</groupId>
  8.        <artifactId>spring-context</artifactId>
  9.        <version>${spring.version}</version>
  10.    </dependency>
  11. </dependencies>

2.3 编写Dao接口和实现类

  1. public interface UserDao {  
  2.    public void save();
  3. }
  4. public class UserDaoImpl implements UserDao {  
  5.        @Override  
  6.        public void save() {
  7.       System.out.println("UserDao save method running....");
  8. }
  9. }

2.4 创建Spring核心配置文件

在类路径下(resources)创建applicationContext.xml配置文件

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="
  4.    http://www.springframework.org/schema/beans                 http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. </beans>

2.5 在Spring配置文件中配置UserDaoImpl

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="
  4.    http://www.springframework.org/schema/beans                 http://www.springframework.org/schema/beans/spring-beans.xsd">
  5.   <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"></bean>
  6. </beans>
 

2.6 使用Spring的API获得Bean实例

  1. @Test
  2. public void test1(){
  3. ApplicationContext applicationContext = new  
  4.             ClassPathXmlApplicationContext("applicationContext.xml");
  5.             UserDao userDao = (UserDao) applicationContext.getBean("userDao");   userDao.save();
  6. }

3. Spring配置文件

3.1 Bean标签基本配置

用于配置对象交由Spring 来创建。

默认情况下它调用的是类中的无参构造函数,如果没有无参构造函数则不能创建成功。

基本属性:

id:Bean实例在Spring容器中的唯一标识

class:Bean的全限定名称

3.2 Bean标签范围配置

scope:指对象的作用范围,取值如下:

取值范围说明
singleton默认值,单例的
prototype多例的
requestWEB 项目中,Spring 创建一个 Bean 的对象,将对象存入到 request 域中
sessionWEB 项目中,Spring 创建一个 Bean 的对象,将对象存入到 session 域中
global sessionWEB 项目中,应用在 Portlet 环境,如果没有 Portlet 环境那么globalSession 相当于 session

1)当scope的取值为singleton时

Bean的实例化个数:1个

Bean的实例化时机:当Spring核心文件被加载时,实例化配置的Bean实例

Bean的生命周期:

对象创建:当应用加载,创建容器时,对象就被创建了

对象运行:只要容器在,对象一直活着

对象销毁:当应用卸载,销毁容器时,对象就被销毁了

2)当scope的取值为prototype时

Bean的实例化个数:多个

Bean的实例化时机:当调用getBean()方法时实例化Bean

对象创建:当使用对象时,创建新的对象实例

对象运行:只要对象在使用中,就一直活着

对象销毁:当对象长时间不用时,被 Java 的垃圾回收器回收了

3.3 Bean生命周期配置

init-method:指定类中的初始化方法名称

destroy-method:指定类中销毁方法名称

3.4 Bean实例化三种方式

1) 使用无参构造方法实例化

它会根据默认无参构造方法来创建类对象,如果bean中没有默认无参构造函数,将会创建失败

<bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>

2) 工厂静态方法实例化

工厂的静态方法返回Bean实例

  1. public class StaticFactoryBean {
  2.    public static UserDao createUserDao(){    
  3.    return new UserDaoImpl();
  4.   }
  5. }
  6. <bean id="userDao" class="com.itheima.factory.StaticFactoryBean"
  7.      factory-method="createUserDao" />

3) 工厂实例方法实例化

工厂的非静态方法返回Bean实例

  1. public class DynamicFactoryBean {
  2. public UserDao createUserDao(){
  3. return new UserDaoImpl();
  4. }
  5. }
  6. <bean id="factoryBean" class="com.itheima.factory.DynamicFactoryBean"/>
  7. <bean id="userDao" factory-bean="factoryBean" factory-method="createUserDao"/>

3.5 Bean的依赖注入入门

①创建 UserService,UserService 内部在调用 UserDao的save() 方法

  1. public class UserServiceImpl implements UserService {
  2. @Override
  3. public void save() {
  4. ApplicationContext applicationContext = new
  5. ClassPathXmlApplicationContext("applicationContext.xml"); UserDao userDao = (UserDao) applicationContext.getBean("userDao");
  6. userDao.save();
  7. }
  8. }

②将 UserServiceImpl 的创建权交给 Spring

<bean id="userService" class="com.itheima.service.impl.UserServiceImpl"/>

③从 Spring 容器中获得 UserService 进行操作

  1. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
  2. UserService userService = (UserService) applicationContext.getBean("userService");
  3. userService.save();

3.6 Bean的依赖注入概念

依赖注入(Dependency Injection):它是 Spring 框架核心 IOC 的具体实现。

在编写程序时,通过控制反转,把对象的创建交给了 Spring,但是代码中不可能出现没有依赖的情况。

IOC 解耦只是降低他们的依赖关系,但不会消除。例如:业务层仍会调用持久层的方法。

那这种业务层和持久层的依赖关系,在使用 Spring 之后,就让 Spring 来维护了。

简单的说,就是坐等框架把持久层对象传入业务层,而不用我们自己去获取

3.7 Bean的依赖注入方式

①构造方法

创建有参构造

  1. public class UserServiceImpl implements UserService {
  2. @Override
  3. public void save() {
  4. ApplicationContext applicationContext = new
  5. ClassPathXmlApplicationContext("applicationContext.xml"); UserDao userDao = (UserDao) applicationContext.getBean("userDao");
  6. userDao.save();
  7. }
  8. }

配置Spring容器调用有参构造时进行注入

  1. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>
  2. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl"> <constructor-arg name="userDao" ref="userDao"></constructor-arg>
  3. </bean>

②set方法

在UserServiceImpl中添加setUserDao方法

  1. public class UserServiceImpl implements UserService {
  2. private UserDao userDao;
  3. public void setUserDao(UserDao userDao) {
  4. this.userDao = userDao;
  5. }
  6. @Override
  7. public void save() {
  8. userDao.save();
  9. }
  10. }

配置Spring容器调用set方法进行注入

  1. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl"/>
  2. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl">
  3. <property name="userDao" ref="userDao"/>
  4. </bean>

set方法:P命名空间注入

P命名空间注入本质也是set方法注入,但比起上述的set方法注入更加方便,主要体现在配置文件中,如下:

首先,需要引入P命名空间:

xmlns:p="http://www.springframework.org/schema/p"

其次,需要修改注入方式

  1. <bean id="userService" class="com.itheima.service.impl.UserServiceImpl" p:userDao-
  2. ref="userDao"/>

3.8 Bean的依赖注入的数据类型

上面的操作,都是注入的引用Bean,处了对象的引用可以注入,普通数据类型,集合等都可以在容器中进行注入。

注入数据的三种数据类型:

普通数据类型;

引用数据类型;

集合数据类型。

其中引用数据类型,此处就不再赘述了,之前的操作都是对UserDao对象的引用进行注入的,下面将以set方法注入为例,演示普通数据类型和集合数据类型的注入。

Bean的依赖注入的数据类型

(1)普通数据类型的注入

  1. public class UserDaoImpl implements UserDao {
  2. private String company;
  3. private int age;
  4. public void setCompany(String company) {
  5. this.company = company;
  6. }
  7. public void setAge(int age) {
  8. this.age = age;
  9. }
  10. public void save() {
  11. System.out.println(company+"==="+age);
  12. System.out.println("UserDao save method running....");
  13. }
  14. }
  15. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
  16. <property name="company" value="传智播客"></property>
  17. <property name="age" value="15"></property>
  18. </bean>

(2)集合数据类型(List<String>)的注入

  1. public class UserDaoImpl implements UserDao {
  2. private List<String> strList;
  3. public void setStrList(List<String> strList) {
  4. this.strList = strList;
  5. }
  6. public void save() {
  7. System.out.println(strList);
  8. System.out.println("UserDao save method running....");
  9. }
  10. }
  11. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
  12. <property name="strList">
  13. <list>
  14. <value>aaa</value>
  15. <value>bbb</value>
  16. <value>ccc</value>
  17. </list>
  18. </property>
  19. </bean>

(3)集合数据类型(List<User>)的注入

  1. public class UserDaoImpl implements UserDao {
  2. private List<User> userList;
  3. public void setUserList(List<User> userList) {
  4. this.userList = userList;
  5. }
  6. public void save() {
  7. System.out.println(userList);
  8. System.out.println("UserDao save method running....");
  9. }
  10. }
  11. <bean id="u1" class="com.itheima.domain.User"/>
  12. <bean id="u2" class="com.itheima.domain.User"/>
  13. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
  14. <property name="userList">
  15. <list>
  16. <bean class="com.itheima.domain.User"/>
  17. <bean class="com.itheima.domain.User"/>
  18. <ref bean="u1"/>
  19. <ref bean="u2"/>
  20. </list>
  21. </property>
  22. </bean>

(4)集合数据类型( Map<String,User> )的注入

  1. public class UserDaoImpl implements UserDao {
  2. private Map<String,User> userMap;
  3. public void setUserMap(Map<String, User> userMap) {
  4. this.userMap = userMap;
  5. }
  6. public void save() {
  7. System.out.println(userMap);
  8. System.out.println("UserDao save method running....");
  9. }
  10. }
  11. <bean id="u1" class="com.itheima.domain.User"/>
  12. <bean id="u2" class="com.itheima.domain.User"/>
  13. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
  14. <property name="userMap">
  15. <map>
  16. <entry key="user1" value-ref="u1"/>
  17. <entry key="user2" value-ref="u2"/>
  18. </map>
  19. </property>
  20. </bean>

(5)集合数据类型(Properties)的注入

  1. public class UserDaoImpl implements UserDao {
  2. private Properties properties;
  3. public void setProperties(Properties properties) {
  4. this.properties = properties;
  5. }
  6. public void save() {
  7. System.out.println(properties);
  8. System.out.println("UserDao save method running....");
  9. }
  10. }
  11. <bean id="userDao" class="com.itheima.dao.impl.UserDaoImpl">
  12. <property name="properties">
  13. <props>
  14. <prop key="p1">aaa</prop>
  15. <prop key="p2">bbb</prop>
  16. <prop key="p3">ccc</prop>
  17. </props>
  18. </property>
  19. </bean>

3.9 引入其他配置文件(分模块开发)

实际开发中,Spring的配置内容非常多,这就导致Spring配置很繁杂且体积很大,所以,可以将部分配置拆解到其他配置文件中,而在Spring主配置文件通过import标签进行加载

<import resource="applicationContext-xxx.xml"/>

4. spring相关API

4.1 ApplicationContext的继承体系

applicationContext:接口类型,代表应用上下文,可以通过其实例获得 Spring 容器中的 Bean 对象

4.2 ApplicationContext的实现类

1)ClassPathXmlApplicationContext

它是从类的根路径下加载配置文件 推荐使用这种

2)FileSystemXmlApplicationContext

它是从磁盘路径上加载配置文件,配置文件可以在磁盘的任意位置。

3)AnnotationConfigApplicationContext

当使用注解配置容器对象时,需要使用此类来创建 spring 容器。它用来读取注解。

4.3 getBean()方法使用

  1. public Object getBean(String name) throws BeansException {
  2. assertBeanFactoryActive();
  3. return getBeanFactory().getBean(name);
  4. }
  5. public <T> T getBean(Class<T> requiredType) throws BeansException { assertBeanFactoryActive();
  6. return getBeanFactory().getBean(requiredType);
  7. }

其中,当参数的数据类型是字符串时,表示根据Bean的id从容器中获得Bean实例,返回是Object,需要强转。

当参数的数据类型是Class类型时,表示根据类型从容器中匹配Bean实例,当容器中相同类型的Bean有多个时,则此方法会报错

getBean()方法使用

  1. ApplicationContext applicationContext = new
  2. ClassPathXmlApplicationContext("applicationContext.xml");
  3. UserService userService1 = (UserService) applicationContext.getBean("userService");
  4. UserService userService2 = applicationContext.getBean(UserService.class);

二、SpringIoC和DI注解开发

1.Spring配置数据源

1.1 数据源(连接池)的作用

数据源(连接池)是提高程序性能如出现的;

事先实例化数据源,初始化部分连接资源;

使用连接资源时从数据源中获取;

使用完毕后将连接资源归还给数据源;

常见的数据源(连接池):DBCP、C3P0、BoneCP、Druid等。

开发步骤

①导入数据源的坐标和数据库驱动坐标;

②创建数据源对象;

③设置数据源的基本连接数据;

④使用数据源获取连接资源和归还连接资源。

1.2 数据源的手动创建

①导入c3p0和druid的坐标

  1. <!-- C3P0连接池 -->
  2. <dependency>
  3.    <groupId>c3p0</groupId>
  4.    <artifactId>c3p0</artifactId>
  5.    <version>0.9.1.2</version>
  6. </dependency>
  7. <!-- Druid连接池 -->
  8. <dependency>
  9.    <groupId>com.alibaba</groupId>
  10.    <artifactId>druid</artifactId>
  11.    <version>1.1.10</version>
  12. </dependency>

①导入mysql数据库驱动坐标

  1. <!-- mysql驱动 -->
  2. <dependency>
  3.    <groupId>mysql</groupId>
  4.    <artifactId>mysql-connector-java</artifactId>
  5.    <version>5.1.39</version>
  6. </dependency>

②创建C3P0连接池

  1. @Test
  2. public void testC3P0() throws Exception {
  3. //创建数据源
  4. ComboPooledDataSource dataSource = new ComboPooledDataSource();
  5. //设置数据库连接参数
  6.    dataSource.setDriverClass("com.mysql.jdbc.Driver");                               dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/test");
  7.    dataSource.setUser("root");
  8.    dataSource.setPassword("root");
  9. //获得连接对象
  10. Connection connection = dataSource.getConnection();
  11. System.out.println(connection);
  12. }

②创建Druid连接池

  1. @Test
  2. public void testDruid() throws Exception {
  3.    //创建数据源
  4.    DruidDataSource dataSource = new DruidDataSource();
  5.    //设置数据库连接参数
  6.    dataSource.setDriverClassName("com.mysql.jdbc.Driver");
  7.    dataSource.setUrl("jdbc:mysql://localhost:3306/test");  
  8.    dataSource.setUsername("root");
  9.    dataSource.setPassword("root");
  10.    //获得连接对象
  11.    Connection connection = dataSource.getConnection();    
  12.    System.out.println(connection);
  13. }

③提取jdbc.properties配置文件

  1. jdbc.driver=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql://localhost:3306/test
  3. jdbc.username=root
  4. jdbc.password=root

④读取jdbc.properties配置文件创建连接池

  1. @Test
  2. public void testC3P0ByProperties() throws Exception {
  3.    //加载类路径下的jdbc.properties
  4.    ResourceBundle rb = ResourceBundle.getBundle("jdbc");
  5.    ComboPooledDataSource dataSource = new ComboPooledDataSource();
  6.    dataSource.setDriverClass(rb.getString("jdbc.driver"));  
  7.    dataSource.setJdbcUrl(rb.getString("jdbc.url"));
  8.    dataSource.setUser(rb.getString("jdbc.username"));
  9.    dataSource.setPassword(rb.getString("jdbc.password"));
  10.    Connection connection = dataSource.getConnection();  
  11.    System.out.println(connection);
  12. }

1.3 Spring配置数据源

可以将DataSource的创建权交由Spring容器去完成

DataSource有无参构造方法,而Spring默认就是通过无参构造方法实例化对象的

DataSource要想使用需要通过set方法设置数据库连接信息,而Spring可以通过set方法进行字符串注入

  1. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  2.    <property name="driverClass" value="com.mysql.jdbc.Driver"/>
  3.    <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/test"/>
  4.    <property name="user" value="root"/>
  5.    <property name="password" value="root"/>
  6. </bean>

测试从容器当中获取数据源

  1. ApplicationContext applicationContext = new
  2.           ClassPathXmlApplicationContext("applicationContext.xml");
  3.               DataSource dataSource = (DataSource)
  4. applicationContext.getBean("dataSource");
  5. Connection connection = dataSource.getConnection();
  6. System.out.println(connection);

1.4 抽取jdbc配置文件

applicationContext.xml加载jdbc.properties配置文件获得连接信息。

首先,需要引入context命名空间和约束路径:

命名空间:xmlns:context="Index of /schema/context"

约束路径:Index of /schema/context

http://www.springframework.org/schema/context/spring-context.xsd

  1. <context:property-placeholder location="classpath:jdbc.properties"/>
  2. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  3. <property name="driverClass" value="${jdbc.driver}"/>
  4. <property name="jdbcUrl" value="${jdbc.url}"/>
  5. <property name="user" value="${jdbc.username}"/>
  6. <property name="password" value="${jdbc.password}"/>
  7. </bean>

1.5 知识要点

Spring容器加载properties文件

  1. <context:property-placeholder location="xx.properties"/>
  2. <property name="" value="${key}"/>

2. Spring注解开发

2.1 Spring原始注解

Spring是轻代码而重配置的框架,配置比较繁重,影响开发效率,所以注解开发是一种趋势,注解代替xml配置文件可以简化配置,提高开发效率。

Spring原始注解主要是替代<Bean>的配置

注解说明
@Component使用在类上用于实例化Bean
@Controller使用在web层类上用于实例化Bean
@Service使用在service层类上用于实例化Bean
@Repository使用在dao层类上用于实例化Bean
@Autowired使用在字段上用于根据类型依赖注入
@Qualifier结合@Autowired一起使用用于根据名称进行依赖注入
@Resource相当于@Autowired+@Qualifier,按照名称进行注入
@Value注入普通属性
@Scope标注Bean的作用范围
@PostConstruct使用在方法上标注该方法是Bean的初始化方法
@PreDestroy使用在方法上标注该方法是Bean的销毁方法

注意:

使用注解进行开发时,需要在applicationContext.xml中配置组件扫描,作用是指定哪个包及其子包下的Bean需要进行扫描以便识别使用注解配置的类、字段和方法。

  1. <!--注解的组件扫描-->
  2. <context:component-scan base-package="com.itheima"></context:component-scan>

使用@Compont或@Repository标识UserDaoImpl需要Spring进行实例化。

  1. //@Component("userDao")
  2. @Repository("userDao")
  3. public class UserDaoImpl implements UserDao {
  4. @Override
  5. public void save() {
  6. System.out.println("save running... ...");
  7. }
  8. }

使用@Compont或@Service标识UserServiceImpl需要Spring进行实例化

使用@Autowired或者@Autowired+@Qulifier或者@Resource进行userDao的注入

  1. //@Component("userService")
  2. @Service("userService")
  3. public class UserServiceImpl implements UserService {
  4. /*@Autowired
  5. @Qualifier("userDao")*/
  6. @Resource(name="userDao")
  7. private UserDao userDao;
  8. @Override
  9. public void save() {
  10. userDao.save();
  11. }
  12. }

使用@Value进行字符串的注入

  1. @Repository("userDao")
  2. public class UserDaoImpl implements UserDao {
  3. @Value("注入普通数据")
  4. private String str;
  5. @Value("${jdbc.driver}")
  6. private String driver;
  7. @Override
  8. public void save() {
  9. System.out.println(str);
  10. System.out.println(driver);
  11. System.out.println("save running... ...");
  12. }
  13. }

使用@Scope标注Bean的范围

  1. //@Scope("prototype")
  2. @Scope("singleton")
  3. public class UserDaoImpl implements UserDao {
  4. //此处省略代码
  5. }

使用@PostConstruct标注初始化方法,使用@PreDestroy标注销毁方法

  1. @PostConstruct
  2. public void init(){
  3. System.out.println("初始化方法....");
  4. }
  5. @PreDestroy
  6. public void destroy(){
  7. System.out.println("销毁方法.....");
  8. }

2.2 Spring新注解

使用上面的注解还不能全部替代xml配置文件,还需要使用注解替代的配置如下:

非自定义的Bean的配置:<bean>

加载properties文件的配置:context:property-placeholder

组件扫描的配置:context:component-scan

引入其他文件:<import>

注解说明
@Configuration用于指定当前类是一个 Spring 配置类,当创建容器时会从该类上加载注解
@ComponentScan用于指定 Spring 在初始化容器时要扫描的包。 作用和在 Spring 的 xml 配置文件中的 <context:component-scan base-package="com.itheima"/>一样
@Bean使用在方法上,标注将该方法的返回值存储到 Spring 容器中
@PropertySource用于加载.properties 文件中的配置
@Import用于导入其他配置类

@Configuration

@ComponentScan

@Import

  1. @Configuration
  2. @ComponentScan("com.itheima")
  3. @Import({DataSourceConfiguration.class})
  4. public class SpringConfiguration {
  5. }

@PropertySource

@value

  1. @PropertySource("classpath:jdbc.properties")
  2. public class DataSourceConfiguration {
  3. @Value("${jdbc.driver}")
  4. private String driver;
  5. @Value("${jdbc.url}")
  6. private String url;
  7. @Value("${jdbc.username}")
  8. private String username;
  9. @Value("${jdbc.password}")
  10. private String password;

@Bean

  1. @Bean(name="dataSource")
  2. public DataSource getDataSource() throws PropertyVetoException {
  3. ComboPooledDataSource dataSource = new ComboPooledDataSource();
  4. dataSource.setDriverClass(driver);
  5. dataSource.setJdbcUrl(url);
  6. dataSource.setUser(username);
  7. dataSource.setPassword(password);
  8. return dataSource;
  9. }

测试加载核心配置类创建Spring容器

  1. @Test
  2. public void testAnnoConfiguration() throws Exception {
  3. ApplicationContext applicationContext = new
  4. AnnotationConfigApplicationContext(SpringConfiguration.class); UserService userService = (UserService)
  5. applicationContext.getBean("userService");
  6. userService.save();
  7. DataSource dataSource = (DataSource)
  8. applicationContext.getBean("dataSource");
  9. Connection connection = dataSource.getConnection();
  10. System.out.println(connection);
  11. }

3. Spring整合Junit

3.1 原始Junit测试Spring的问题

在测试类中,每个测试方法都有以下两行代码:

  1. ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
  2. IAccountService as = ac.getBean("accountService",IAccountService.class);

这两行代码的作用是获取容器,如果不写的话,直接会提示空指针异常。所以又不能轻易删掉。

3.2 上述问题解决思路

让SpringJunit负责创建Spring容器,但是需要将配置文件的名称告诉它;

将需要进行测试Bean直接在测试类中进行注入。

3.3 Spring集成Junit步骤

①导入spring集成Junit的坐标;

②使用@Runwith注解替换原来的运行期;

③使用@ContextConfiguration指定配置文件或配置类;

④使用@Autowired注入需要测试的对象;

⑤创建测试方法进行测试。

3.4 Spring集成Junit代码实现

①导入spring集成Junit的坐标

  1. <!--此处需要注意的是,spring5 及以上版本要求 junit 的版本必须是 4.12 及以上-->
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-test</artifactId>
  5. <version>5.0.2.RELEASE</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>junit</groupId>
  9. <artifactId>junit</artifactId>
  10. <version>4.12</version>
  11. <scope>test</scope>
  12. </dependency>

②使用@Runwith注解替换原来的运行期

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. public class SpringJunitTest {
  3. }

③使用@ContextConfiguration指定配置文件或配置类

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. //加载spring核心配置文件
  3. //@ContextConfiguration(value = {"classpath:applicationContext.xml"})
  4. //加载spring核心配置类
  5. @ContextConfiguration(classes = {SpringConfiguration.class})
  6. public class SpringJunitTest {
  7. }

④使用@Autowired注入需要测试的对象

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @ContextConfiguration(classes = {SpringConfiguration.class})
  3. public class SpringJunitTest {
  4. @Autowired
  5. private UserService userService;
  6. }

⑤创建测试方法进行测试

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @ContextConfiguration(classes = {SpringConfiguration.class})public class SpringJunitTest {
  3. @Autowired
  4. private UserService userService;
  5. @Test
  6. public void testUserService(){
  7. userService.save();
  8. }
  9. }

Spring集成Junit步骤:

①导入spring集成Junit的坐标;

②使用@Runwith注解替换原来的运行期;

③使用@ContextConfiguration指定配置文件或配置类;

④使用@Autowired注入需要测试的对象;

⑤创建测试方法进行测试。

三、Spring的AOP相关知识

1.Spring 的 AOP 简介

1.1 什么是 AOP

AOP 为 Aspect Oriented Programming 的缩写,意思为面向切面编程,是通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。

AOP 是 OOP 的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

1.2 AOP 的作用及其优势

作用:在程序运行期间,在不修改源码的情况下对方法进行功能增强;

优势:减少重复代码,提高开发效率,并且便于维护。

1.3 AOP 的底层实现

实际上,AOP 的底层是通过 Spring 提供的的动态代理技术实现的。在运行期间,Spring通过动态代理技术动态的生成代理对象,代理对象方法执行时进行增强功能的介入,在去调用目标对象的方法,从而完成功能的增强。

1.4 AOP 的动态代理技术

常用的动态代理技术

JDK 代理 : 基于接口的动态代理技术;

cglib 代理:基于父类的动态代理技术。

1.5 JDK 的动态代理

①目标类接口

  1. public interface TargetInterface {
  2.    public void method();
  3. }

②目标类

  1. public class Target implements TargetInterface {
  2.    @Override
  3.    public void method() {
  4.        System.out.println("Target running....");
  5.   }
  6. }

③动态代理代码

  1. Target target = new Target(); //创建目标对象
  2. //创建代理对象
  3. TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(target.getClass()
  4. .getClassLoader(),target.getClass().getInterfaces(),new InvocationHandler() {
  5.            @Override
  6.            public Object invoke(Object proxy, Method method, Object[] args)
  7.            throws Throwable {
  8.                System.out.println("前置增强代码...");
  9.                Object invoke = method.invoke(target, args);
  10.                System.out.println("后置增强代码...");
  11.                return invoke;
  12.           }
  13.       }
  14. );

④ 调用代理对象的方法测试

  1. // 测试,当调用接口的任何方法时,代理对象的代码都无序修改
  2. proxy.method();

1.6 cglib 的动态代理

①目标类

  1. public class Target {
  2.    public void method() {
  3.        System.out.println("Target running....");
  4.   }
  5. }

②动态代理代码

  1. Target target = new Target(); //创建目标对象
  2. Enhancer enhancer = new Enhancer();   //创建增强器
  3. enhancer.setSuperclass(Target.class); //设置父类
  4. enhancer.setCallback(new MethodInterceptor() { //设置回调
  5.    @Override
  6.    public Object intercept(Object o, Method method, Object[] objects,
  7.    MethodProxy methodProxy) throws Throwable {
  8.        System.out.println("前置代码增强....");
  9.        Object invoke = method.invoke(target, objects);
  10.        System.out.println("后置代码增强....");
  11.        return invoke;
  12.   }
  13. });
  14. Target proxy = (Target) enhancer.create(); //创建代理对象

③调用代理对象的方法测试

  1. //测试,当调用接口的任何方法时,代理对象的代码都无序修改
  2. proxy.method();

1.7 AOP 相关概念

Spring 的 AOP 实现底层就是对上面的动态代理的代码进行了封装,封装后我们只需要对需要关注的部分进行代码编写,并通过配置的方式完成指定目标的方法增强。

在正式讲解 AOP 的操作之前,我们必须理解 AOP 的相关术语,常用的术语如下:

  • Target(目标对象):代理的目标对象;

  • Proxy (代理):一个类被 AOP 织入增强后,就产生一个结果代理类;

  • Joinpoint(连接点):所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,因为spring只支持方法类型的连接点(可以被增强的方法);

  • Pointcut(切入点):所谓切入点是指我们要对哪些 Joinpoint 进行拦截的定义(真正被增强的方法);

  • Advice(通知/ 增强):所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知(对目标方法进行增强的方法);

  • Aspect(切面):是切入点和通知(引介)的结合;

  • Weaving(织入):是指把增强应用到目标对象来创建新的代理对象的过程。spring采用动态代理织入,而AspectJ采用编译期织入和类装载期织入(切入点和增强结合的过程)。

1.8 AOP 开发明确的事项
1)需要编写的内容
  • 编写核心业务代码(目标类的目标方法);

  • 编写切面类,切面类中有通知(增强功能方法);

  • 在配置文件中,配置织入关系,即将哪些通知与哪些连接点进行结合。

2)AOP 技术实现的内容

Spring 框架监控切入点方法的执行。一旦监控到切入点方法被运行,使用代理机制,动态创建目标对象的代理对象,根据通知类别,在代理对象的对应位置,将通知对应的功能织入,完成完整的代码逻辑运行。

3)AOP 底层使用哪种代理方式

在 spring 中,框架会根据目标类是否实现了接口来决定采用哪种动态代理的方式。

1.9 知识要点
  • aop:面向切面编程

  • aop底层实现:基于JDK的动态代理 和 基于Cglib的动态代理

  • aop的重点概念:

    1. Pointcut(切入点):被增强的方法;
    2. Advice(通知/ 增强):封装增强业务逻辑的方法;
    3. Aspect(切面):切点+通知;
    4. Weaving(织入):将切点与通知结合的过程。
  • 开发明确事项:

    1. 谁是切点(切点表达式配置);
    2. 谁是通知(切面类中的增强方法);
    3. 将切点和通知进行织入配置。

2. 基于 XML 的 AOP 开发

2.1 快速入门

①导入 AOP 相关坐标;

②创建目标接口和目标类(内部有切点);

③创建切面类(内部有增强方法);

④将目标类和切面类的对象创建权交给 spring;

⑤在 applicationContext.xml 中配置织入关系;

⑥测试代码。

①导入 AOP 相关坐标

  1. <!--导入spring的context坐标,context依赖aop-->
  2. <dependency>
  3.  <groupId>org.springframework</groupId>
  4.  <artifactId>spring-context</artifactId>
  5.  <version>5.0.5.RELEASE</version>
  6. </dependency>
  7. <!-- aspectj的织入 -->
  8. <dependency>
  9.  <groupId>org.aspectj</groupId>
  10.  <artifactId>aspectjweaver</artifactId>
  11.  <version>1.8.13</version>
  12. </dependency>

②创建目标接口和目标类(内部有切点)

  1. public interface TargetInterface {
  2.    public void method();
  3. }
  4. public class Target implements TargetInterface {
  5.    @Override
  6.    public void method() {
  7.        System.out.println("Target running....");
  8.   }
  9. }

③创建切面类(内部有增强方法)

  1. public class MyAspect {
  2.    //前置增强方法
  3.    public void before(){
  4.        System.out.println("前置代码增强.....");
  5.   }
  6. }

④将目标类和切面类的对象创建权交给 spring

  1. <!--配置目标类-->
  2. <bean id="target" class="com.itheima.aop.Target"></bean>
  3. <!--配置切面类-->
  4. <bean id="myAspect" class="com.itheima.aop.MyAspect"></bean>
 

⑤在 applicationContext.xml 中配置织入关系

导入aop命名空间

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.       xmlns:context="http://www.springframework.org/schema/context"
  4.       xmlns:aop="http://www.springframework.org/schema/aop"
  5.       xsi:schemaLocation="
  6.        http://www.springframework.org/schema/context
  7.        http://www.springframework.org/schema/context/spring-context.xsd
  8.        http://www.springframework.org/schema/aop
  9.        http://www.springframework.org/schema/aop/spring-aop.xsd
  10.        http://www.springframework.org/schema/beans
  11.        http://www.springframework.org/schema/beans/spring-beans.xsd">

⑤在 applicationContext.xml 中配置织入关系

配置切点表达式和前置增强的织入关系

  1. <aop:config>
  2.    <!--引用myAspect的Bean为切面对象-->
  3.    <aop:aspect ref="myAspect">
  4.        <!--配置Target的method方法执行时要进行myAspect的before方法前置增强-->
  5.        <aop:before method="before" pointcut="execution(public void com.itheima.aop.Target.method())"></aop:before>
  6.    </aop:aspect>
  7. </aop:config>

⑥测试代码

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @ContextConfiguration("classpath:applicationContext.xml")
  3. public class AopTest {
  4.    @Autowired
  5.    private TargetInterface target;
  6.    @Test
  7.    public void test1(){
  8.        target.method();
  9.   }
  10. }

⑦测试结果

2.2 XML 配置 AOP 详解
1) 切点表达式的写法

表达式语法:

execution([修饰符] 返回值类型 包名.类名.方法名(参数))
  • 访问修饰符可以省略

  • 返回值类型、包名、类名、方法名可以使用星号* 代表任意

  • 包名与类名之间一个点 . 代表当前包下的类,两个点 .. 表示当前包及其子包下的类

  • 参数列表可以使用两个点 .. 表示任意个数,任意类型的参数列表

例如:

  1. execution(public void com.itheima.aop.Target.method())
  2. execution(void com.itheima.aop.Target.*(..))
  3. execution(* com.itheima.aop.*.*(..))
  4. execution(* com.itheima.aop..*.*(..))
  5. execution(* *..*.*(..))
2) 通知的类型

通知的配置语法:

<aop:通知类型 method=“切面类中方法名” pointcut=“切点表达式"></aop:通知类型>

 

3) 切点表达式的抽取

当多个增强的切点表达式相同时,可以将切点表达式进行抽取,在增强中使用 pointcut-ref 属性代替 pointcut 属性来引用抽取后的切点表达式。

  1. <aop:config>
  2.    <!--引用myAspect的Bean为切面对象-->
  3.    <aop:aspect ref="myAspect">
  4.        <aop:pointcut id="myPointcut" expression="execution(* com.itheima.aop.*.*(..))"/>
  5.        <aop:before method="before" pointcut-ref="myPointcut"></aop:before>
  6.    </aop:aspect>
  7. </aop:config>
2.3 知识要点
  • aop织入的配置

  1. <aop:config>
  2.    <aop:aspect ref=“切面类”>
  3.        <aop:before method=“通知方法名称” pointcut=“切点表达式"></aop:before>
  4.    </aop:aspect>
  5. </aop:config>
  • 通知的类型:前置通知、后置通知、环绕通知、异常抛出通知、最终通知

  • 切点表达式的写法:

execution([修饰符] 返回值类型 包名.类名.方法名(参数))

3.基于注解的 AOP 开发

3.1 快速入门

基于注解的aop开发步骤:

①创建目标接口和目标类(内部有切点);

②创建切面类(内部有增强方法);

③将目标类和切面类的对象创建权交给 spring;

④在切面类中使用注解配置织入关系;

⑤在配置文件中开启组件扫描和 AOP 的自动代理;

⑥测试。

①创建目标接口和目标类(内部有切点)

  1. public interface TargetInterface {
  2.    public void method();
  3. }
  4. public class Target implements TargetInterface {
  5.    @Override
  6.    public void method() {
  7.        System.out.println("Target running....");
  8.   }
  9. }

②创建切面类(内部有增强方法)

  1. public class MyAspect {
  2.    //前置增强方法
  3.    public void before(){
  4.        System.out.println("前置代码增强.....");
  5.   }
  6. }

③将目标类和切面类的对象创建权交给 spring

  1. @Component("target")
  2. public class Target implements TargetInterface {
  3.    @Override
  4.    public void method() {
  5.        System.out.println("Target running....");
  6.   }
  7. }
  8. @Component("myAspect")
  9. public class MyAspect {
  10.    public void before(){
  11.        System.out.println("前置代码增强.....");
  12.   }
  13. }

④在切面类中使用注解配置织入关系

  1. @Component("myAspect")
  2. @Aspect
  3. public class MyAspect {
  4.    @Before("execution(* com.itheima.aop.*.*(..))")
  5.    public void before(){
  6.        System.out.println("前置代码增强.....");
  7.   }
  8. }

⑤在配置文件中开启组件扫描和 AOP 的自动代理

  1. <!--组件扫描-->
  2. <context:component-scan base-package="com.itheima.aop"/>
  3. <!--aop的自动代理-->
  4. <aop:aspectj-autoproxy></aop:aspectj-autoproxy>

⑥测试代码

  1. @RunWith(SpringJUnit4ClassRunner.class)
  2. @ContextConfiguration("classpath:applicationContext.xml")
  3. public class AopTest {
  4.    @Autowired
  5.    private TargetInterface target;
  6.    @Test
  7.    public void test1(){
  8.        target.method();
  9.   }
  10. }

⑦测试结果

3.2 注解配置 AOP 详解
1) 注解通知的类型

通知的配置语法:@通知注解(“切点表达式")

 

2) 切点表达式的抽取

同 xml配置 aop 一样,我们可以将切点表达式抽取。抽取方式是在切面内定义方法,在该方法上使用@Pointcut注解定义切点表达式,然后在在增强注解中进行引用。具体如下:

  1. @@Component("myAspect")
  2. @Aspect
  3. public class MyAspect {
  4.    @Before("MyAspect.myPoint()")
  5.    public void before(){
  6.        System.out.println("前置代码增强.....");
  7.   }
  8.    @Pointcut("execution(* com.itheima.aop.*.*(..))")
  9.    public void myPoint(){}
  10. }
3.3 知识要点
  • 注解aop开发步骤

①使用@Aspect标注切面类;

②使用@通知注解标注通知方法;

③在配置文件中配置aop自动代理aop:aspectj-autoproxy/

  • 通知注解类型

 

四、Spring JdbcTemplate

1.JdbcTemplate基本使用

1.1 JdbcTemplate基本使用-概述(了解)

JdbcTemplate是spring框架中提供的一个对象,是对原始繁琐的Jdbc API对象的简单封装。spring框架为我们提供了很多的操作模板类。例如:操作关系型数据的JdbcTemplate和HibernateTemplate,操作nosql数据库的RedisTemplate,操作消息队列的JmsTemplate等等。

1.2 JdbcTemplate基本使用-开发步骤(理解)

①导入spring-jdbc和spring-tx坐标;

②创建数据库表和实体;

③创建JdbcTemplate对象;

④执行数据库操作。

1.3 JdbcTemplate基本使用-快速入门代码实现(应用)

导入spring-jdbc和spring-tx坐标

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.  <modelVersion>4.0.0</modelVersion>
  5.  <groupId>com.itheima</groupId>
  6.  <artifactId>itheima_spring_jdbc</artifactId>
  7.  <version>1.0-SNAPSHOT</version>
  8.  <packaging>war</packaging>
  9.  <name>itheima_spring_jdbc Maven Webapp</name>
  10.  <!-- FIXME change it to the project's website -->
  11.  <url>http://www.example.com</url>
  12.  <dependencies>
  13.    <dependency>
  14.      <groupId>mysql</groupId>
  15.      <artifactId>mysql-connector-java</artifactId>
  16.      <version>5.1.32</version>
  17.    </dependency>
  18.    <dependency>
  19.      <groupId>c3p0</groupId>
  20.      <artifactId>c3p0</artifactId>
  21.      <version>0.9.1.2</version>
  22.    </dependency>
  23.    <dependency>
  24.      <groupId>com.alibaba</groupId>
  25.      <artifactId>druid</artifactId>
  26.      <version>1.1.10</version>
  27.    </dependency>
  28.    <dependency>
  29.      <groupId>junit</groupId>
  30.      <artifactId>junit</artifactId>
  31.      <version>4.12</version>
  32.      <scope>test</scope>
  33.    </dependency>
  34.    <dependency>
  35.      <groupId>org.springframework</groupId>
  36.      <artifactId>spring-context</artifactId>
  37.      <version>5.0.5.RELEASE</version>
  38.    </dependency>
  39.    <dependency>
  40.      <groupId>org.springframework</groupId>
  41.      <artifactId>spring-test</artifactId>
  42.      <version>5.0.5.RELEASE</version>
  43.    </dependency>
  44.    <dependency>
  45.      <groupId>org.springframework</groupId>
  46.      <artifactId>spring-web</artifactId>
  47.      <version>5.0.5.RELEASE</version>
  48.    </dependency>
  49.    <dependency>
  50.      <groupId>org.springframework</groupId>
  51.      <artifactId>spring-webmvc</artifactId>
  52.      <version>5.0.5.RELEASE</version>
  53.    </dependency>
  54.    <dependency>
  55.      <groupId>javax.servlet</groupId>
  56.      <artifactId>javax.servlet-api</artifactId>
  57.      <version>3.0.1</version>
  58.      <scope>provided</scope>
  59.    </dependency>
  60.    <dependency>
  61.      <groupId>javax.servlet.jsp</groupId>
  62.      <artifactId>javax.servlet.jsp-api</artifactId>
  63.      <version>2.2.1</version>
  64.      <scope>provided</scope>
  65.    </dependency>
  66.    <dependency>
  67.      <groupId>com.fasterxml.jackson.core</groupId>
  68.      <artifactId>jackson-core</artifactId>
  69.      <version>2.9.0</version>
  70.    </dependency>
  71.    <dependency>
  72.      <groupId>com.fasterxml.jackson.core</groupId>
  73.      <artifactId>jackson-databind</artifactId>
  74.      <version>2.9.0</version>
  75.    </dependency>
  76.    <dependency>
  77.      <groupId>com.fasterxml.jackson.core</groupId>
  78.      <artifactId>jackson-annotations</artifactId>
  79.      <version>2.9.0</version>
  80.    </dependency>
  81.    <dependency>
  82.      <groupId>commons-fileupload</groupId>
  83.      <artifactId>commons-fileupload</artifactId>
  84.      <version>1.3.1</version>
  85.    </dependency>
  86.    <dependency>
  87.      <groupId>commons-io</groupId>
  88.      <artifactId>commons-io</artifactId>
  89.      <version>2.3</version>
  90.    </dependency>
  91.    <dependency>
  92.      <groupId>org.springframework</groupId>
  93.      <artifactId>spring-jdbc</artifactId>
  94.      <version>5.0.5.RELEASE</version>
  95.    </dependency>
  96.    <dependency>
  97.      <groupId>org.springframework</groupId>
  98.      <artifactId>spring-tx</artifactId>
  99.      <version>5.0.5.RELEASE</version>
  100.    </dependency>
  101.  </dependencies>
  102. </project>

创建数据库表和实体

  1. package com.itheima.domain;
  2. public class Account {
  3.    private String name;
  4.    private double money;
  5.    public String getName() {
  6.        return name;
  7.   }
  8.    public void setName(String name) {
  9.        this.name = name;
  10.   }
  11.    public double getMoney() {
  12.        return money;
  13.   }
  14.    public void setMoney(double money) {
  15.        this.money = money;
  16.   }
  17.    @Override
  18.    public String toString() {
  19.        return "Account{" +
  20.                "name='" + name + '\'' +
  21.                ", money=" + money +
  22.                '}';
  23.   }
  24. }

创建JdbcTemplate对象

执行数据库操作

  1. @Test
  2.    //测试JdbcTemplate开发步骤
  3.    public void test1() throws PropertyVetoException {
  4.        //创建数据源对象
  5.        ComboPooledDataSource dataSource = new ComboPooledDataSource();
  6.        dataSource.setDriverClass("com.mysql.jdbc.Driver");
  7.        dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/test");
  8.        dataSource.setUser("root");
  9.        dataSource.setPassword("root");
  10.        JdbcTemplate jdbcTemplate = new JdbcTemplate();
  11.        //设置数据源对象 知道数据库在哪
  12.        jdbcTemplate.setDataSource(dataSource);
  13.        //执行操作
  14.        int row = jdbcTemplate.update("insert into account values(?,?)", "tom", 5000);
  15.        System.out.println(row);
  16.   }

1.4 JdbcTemplate基本使用-spring产生模板对象分析(理解)

我们可以将JdbcTemplate的创建权交给Spring,将数据源DataSource的创建权也交给Spring,在Spring容器内部将数据源DataSource注入到JdbcTemplate模版对象中,然后通过Spring容器获得JdbcTemplate对象来执行操作。

1.5 JdbcTemplate基本使用-spring产生模板对象代码实现(应用)

配置如下:

  1. <!--数据源对象-->
  2.    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  3.        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>
  4.        <property name="jdbcUrl" value="jdbc:mysql:///test"></property>
  5.        <property name="user" value="root"></property>
  6.        <property name="password" value="root"></property>
  7.    </bean>
  8.    <!--jdbc模板对象-->
  9.    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  10.        <property name="dataSource" ref="dataSource"/>
  11.    </bean>
 

测试代码

  1. @Test
  2.    //测试Spring产生jdbcTemplate对象
  3.    public void test2() throws PropertyVetoException {
  4.        ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
  5.        JdbcTemplate jdbcTemplate = app.getBean(JdbcTemplate.class);
  6.        int row = jdbcTemplate.update("insert into account values(?,?)", "lisi", 5000);
  7.        System.out.println(row);
  8.   }

1.6 JdbcTemplate基本使用-spring产生模板对象代码实现(抽取jdbc.properties)(应用)

将数据库的连接信息抽取到外部配置文件中,和spring的配置文件分离开,有利于后期维护

  1. jdbc.driver=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql://localhost:3306/test
  3. jdbc.username=root
  4. jdbc.password=root

配置文件修改为:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.       xmlns:context="http://www.springframework.org/schema/context"
  5.       xsi:schemaLocation="
  6.       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7.       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  8. ">
  9.    <!--加载jdbc.properties-->
  10.    <context:property-placeholder location="classpath:jdbc.properties"/>
  11.    <!--数据源对象-->
  12.    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  13.        <property name="driverClass" value="${jdbc.driver}"/>
  14.        <property name="jdbcUrl" value="${jdbc.url}"/>
  15.        <property name="user" value="${jdbc.username}"/>
  16.        <property name="password" value="${jdbc.password}"/>
  17.    </bean>
  18.    <!--jdbc模板对象-->
  19.    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  20.        <property name="dataSource" ref="dataSource"/>
  21.    </bean>
  22. </beans>

1.7 JdbcTemplate基本使用-常用操作-更新操作(应用)

  1. package com.itheima.test;
  2. import com.itheima.domain.Account;
  3. import org.junit.Test;
  4. import org.junit.runner.RunWith;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.jdbc.core.BeanPropertyRowMapper;
  7. import org.springframework.jdbc.core.JdbcTemplate;
  8. import org.springframework.test.context.ContextConfiguration;
  9. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  10. import java.util.List;
  11. @RunWith(SpringJUnit4ClassRunner.class)
  12. @ContextConfiguration("classpath:applicationContext.xml")
  13. public class JdbcTemplateCRUDTest {
  14.    @Autowired
  15.    private JdbcTemplate jdbcTemplate;
  16.    
  17. //修改更新
  18.    @Test
  19.    public void testUpdate(){
  20.        jdbcTemplate.update("update account set money=? where name=?",10000,"tom");
  21.   }
  22. //删除
  23.    @Test
  24.    public void testDelete(){
  25.        jdbcTemplate.update("delete from account where name=?","tom");
  26.   }
  27. }

1.8 JdbcTemplate基本使用-常用操作-查询操作(应用)

  1. package com.itheima.test;
  2. import com.itheima.domain.Account;
  3. import org.junit.Test;
  4. import org.junit.runner.RunWith;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.jdbc.core.BeanPropertyRowMapper;
  7. import org.springframework.jdbc.core.JdbcTemplate;
  8. import org.springframework.test.context.ContextConfiguration;
  9. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  10. import java.util.List;
  11. @RunWith(SpringJUnit4ClassRunner.class)
  12. @ContextConfiguration("classpath:applicationContext.xml")
  13. public class JdbcTemplateCRUDTest {
  14.    @Autowired
  15.    private JdbcTemplate jdbcTemplate;
  16.    
  17. //聚合查询
  18.    @Test
  19.    public void testQueryCount(){
  20.        Long count = jdbcTemplate.queryForObject("select count(*) from account", Long.class);
  21.        System.out.println(count);
  22.   }
  23. //查询一个
  24.    @Test
  25.    public void testQueryOne(){
  26.        Account account = jdbcTemplate.queryForObject("select * from account where name=?", new BeanPropertyRowMapper<Account>(Account.class), "tom");
  27.        System.out.println(account);
  28.   }
  29. //查询所有
  30.    @Test
  31.    public void testQueryAll(){
  32.        List<Account> accountList = jdbcTemplate.query("select * from account", new BeanPropertyRowMapper<Account>(Account.class));
  33.        System.out.println(accountList);
  34.   }
  35. }

1.9 JdbcTemplate基本使用-知识要点(理解,记忆)

①导入spring-jdbc和spring-tx坐标;

②创建数据库表和实体;

③创建JdbcTemplate对象;

  1. JdbcTemplate jdbcTemplate = newJdbcTemplate();
  2.       jdbcTemplate.setDataSource(dataSource);

④执行数据库操作。

  1. 更新操作:
  2.   jdbcTemplate.update (sql,params)
  3. ​查询操作:
  4.   jdbcTemplate.query (sql,Mapper,params)
  5. jdbcTemplate.queryForObject(sql,Mapper,params)

五、声明式事务控制

1. 编程式事务控制相关对象

1.1 PlatformTransactionManager

PlatformTransactionManager 接口是 spring 的事务管理器,它里面提供了我们常用的操作事务的方法。

 注意:

PlatformTransactionManager 是接口类型,不同的 Dao 层技术则有不同的实现类,例如:Dao 层技术是jdbc 或 mybatis 时:org.springframework.jdbc.datasource.DataSourceTransactionManager

Dao 层技术是hibernate时:org.springframework.orm.hibernate5.HibernateTransactionManager

1.2 TransactionDefinition

TransactionDefinition 是事务的定义信息对象,里面有如下方法:

 

1. 事务隔离级别

设置隔离级别,可以解决事务并发产生的问题,如脏读、不可重复读和虚读。

  • ISOLATION_DEFAULT

  • ISOLATION_READ_UNCOMMITTED

  • ISOLATION_READ_COMMITTED

  • ISOLATION_REPEATABLE_READ

  • ISOLATION_SERIALIZABLE

2. 事务传播行为
  • REQUIRED:如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。一般的选择(默认值);

  • SUPPORTS:支持当前事务,如果当前没有事务,就以非事务方式执行(没有事务);

  • MANDATORY:使用当前的事务,如果当前没有事务,就抛出异常;

  • REQUERS_NEW:新建事务,如果当前在事务中,把当前事务挂起;

  • NOT_SUPPORTED:以非事务方式执行操作,如果当前存在事务,就把当前事务挂起

  • NEVER:以非事务方式运行,如果当前存在事务,抛出异常;

  • NESTED:如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行 REQUIRED 类似的操作;

  • 超时时间:默认值是-1,没有超时限制。如果有,以秒为单位进行设置;

  • 是否只读:建议查询时设置为只读。

1.3 TransactionStatus

TransactionStatus 接口提供的是事务具体的运行状态,方法介绍如下。

1.4 知识要点

编程式事务控制三大对象

  • PlatformTransactionManager

  • TransactionDefinition

  • TransactionStatus

2.基于 XML 的声明式事务控制

2.1 什么是声明式事务控制

Spring 的声明式事务顾名思义就是采用声明的方式来处理事务。这里所说的声明,就是指在配置文件中声明,用在 Spring 配置文件中声明式的处理事务来代替代码式的处理事务。

声明式事务处理的作用:

  • 事务管理不侵入开发的组件。具体来说,业务逻辑对象就不会意识到正在事务管理之中,事实上也应该如此,因为事务管理是属于系统层面的服务,而不是业务逻辑的一部分,如果想要改变事务管理策划的话,也只需要在定义文件中重新配置即可

  • 在不需要事务管理的时候,只要在设定文件上修改一下,即可移去事务管理服务,无需改变代码重新编译,这样维护起来极其方便

注意:Spring 声明式事务控制底层就是AOP。

2.2 声明式事务控制的实现

声明式事务控制明确事项:

  • 谁是切点?

  • 谁是通知?

  • 配置切面?

①引入tx命名空间

  1. <beans xmlns="http://www.springframework.org/schema/beans"
  2.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.       xmlns:context="http://www.springframework.org/schema/context"
  4.       xmlns:aop="http://www.springframework.org/schema/aop"
  5.       xmlns:tx="http://www.springframework.org/schema/tx"
  6.       xsi:schemaLocation="
  7.        http://www.springframework.org/schema/context
  8.        http://www.springframework.org/schema/context/spring-context.xsd
  9.        http://www.springframework.org/schema/aop
  10.        http://www.springframework.org/schema/aop/spring-aop.xsd
  11.        http://www.springframework.org/schema/tx
  12.        http://www.springframework.org/schema/tx/spring-tx.xsd
  13.        http://www.springframework.org/schema/beans
  14.        http://www.springframework.org/schema/beans/spring-beans.xsd">
​
​

②配置事务增强

  1. <!--平台事务管理器-->
  2. <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
  3.    <property name="dataSource" ref="dataSource"></property>
  4. </bean>
  5. <!--事务增强配置-->
  6. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  7.    <tx:attributes>
  8.        <tx:method name="*"/>
  9.    </tx:attributes>
  10. </tx:advice>

③配置事务 AOP 织入

  1. <!--事务的aop增强-->
  2. <aop:config>
  3.    <aop:pointcut id="myPointcut" expression="execution(* com.itheima.service.impl.*.*(..))"/>
  4.    <aop:advisor advice-ref="txAdvice" pointcut-ref="myPointcut"></aop:advisor>
  5. </aop:config>

④测试事务控制转账业务代码

  1. @Override
  2. public void transfer(String outMan, String inMan, double money) {
  3.    accountDao.out(outMan,money);
  4.    int i = 1/0;
  5.    accountDao.in(inMan,money);
  6. }

2.3 切点方法的事务参数的配置

  1. <!--事务增强配置-->
  2. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  3.    <tx:attributes>
  4.        <tx:method name="*"/>
  5.    </tx:attributes>
  6. </tx:advice>

其中,tx:method 代表切点方法的事务参数的配置,例如:

<tx:method name="transfer" isolation="REPEATABLE_READ" propagation="REQUIRED" timeout="-1" read-only="false"/>
  • name:切点方法名称;

  • isolation:事务的隔离级别;

  • propogation:事务的传播行为;

  • timeout:超时时间;

  • read-only:是否只读。

2.4 知识要点

声明式事务控制的配置要点

  • 平台事务管理器配置

  • 事务通知的配置

  • 事务aop织入的配置

3.基于注解的声明式事务控制

3.1 使用注解配置声明式事务控制

1.编写 AccoutDao

  1. @Repository("accountDao")
  2. public class AccountDaoImpl implements AccountDao {
  3. @Autowired
  4. private JdbcTemplate jdbcTemplate;
  5. public void out(String outMan, double money) {
  6. jdbcTemplate.update("update account set money=money-? where name=?",money,outMan);
  7. }
  8. public void in(String inMan, double money) {
  9. jdbcTemplate.update("update account set money=money+? where name=?",money,inMan);
  10. }
  11. }

2.编写 AccoutService

  1. @Service("accountService")
  2. @Transactional
  3. public class AccountServiceImpl implements AccountService {
  4. @Autowired
  5. private AccountDao accountDao;
  6. @Transactional(isolation = Isolation.READ_COMMITTED,propagation = Propagation.REQUIRED)
  7. public void transfer(String outMan, String inMan, double money) {
  8. accountDao.out(outMan,money);
  9. int i = 1/0;
  10. accountDao.in(inMan,money);
  11. }
  12. }

3.编写 applicationContext.xml 配置文件

  1. <!—之前省略datsSource、jdbcTemplate、平台事务管理器的配置-->
  2. <!--组件扫描-->
  3. <context:component-scan base-package="com.itheima"/>
  4. <!--事务的注解驱动-->
  5. <tx:annotation-driven/>

3.2 注解配置声明式事务控制解析

①使用 @Transactional 在需要进行事务控制的类或是方法上修饰,注解可用的属性同 xml 配置方式,例如隔离级别、传播行为等。

②注解使用在类上,那么该类下的所有方法都使用同一套注解参数配置。

③使用在方法上,不同的方法可以采用不同的事务参数配置。

④Xml配置文件中要开启事务的注解驱动<tx:annotation-driven />

3.3 知识要点

注解声明式事务控制的配置要点

  • 平台事务管理器配置(xml方式)

  • 事务通知的配置(@Transactional注解配置)

  • 事务注解驱动的配置 tx:annotation-driven/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/513458
推荐阅读
相关标签
  

闽ICP备14008679号