当前位置:   article > 正文

Spring框架学习

spring框架学习

Spring框架

1、Spring框架介绍及搭建

Spring简介(官网:Spring | Home)

Spring框架是一个开放源代码J2EE应用程序框架,由Rod Johnson发起,是针对bean的生命周期进行管理的轻量级容器(lightweight container)。 Spring解决了开发者在J2EE开发中遇到的许多常见的问题,提供了功能强大IOC、AOP及Web MVC等功能。Spring可以单独应用于构筑应用程序,也可以和Struts、Webwork、Tapestry等众多Web框架组合使用,并且可以与 Swing等桌面应用程序AP组合。因此, Spring不仅仅能应用于J2EE应用程序之中,也可以应用于桌面应用程序以及小应用程序之中。Spring框架主要由七部分组成,分别是 Spring Core、 Spring AOP、 Spring ORM、 Spring DAO、Spring Context、 Spring Web和 Spring Web MVC

简略核心解释

  1. spring是一个轻量级的开源框架。

  2. spring为了解决企业级应用开发的业务逻辑层和其他各层的耦合问题。

  3. spring是一个IOC和AOP的容器框架。

Spring框架特征

  • 轻量(Lightweight)

  • 控制反转(IOC [Inverse of Control] )

  • 面向切面(AOP [Aspect Oriented Programming])

  • 容器(Container)

  • 框架(Framework)

  • MVC

Spring 主要模块

  • Spring Core: Spring 其他所有的功能都需要依赖于该类库,主要提供 IoC 依赖注入功能。

  • Spring Aspects : 该模块为与 AspectJ 的集成提供支持。

  • Spring AOP :提供了面向切面的编程实现。

  • Spring JDBC : Java 数据库连接。

  • Spring JMS :Java 消息服务。

  • Spring ORM : 用于支持 Hibernate 等 ORM 工具。

  • Spring Web : 为创建 Web 应用程序提供支持。

  • Spring Test : 提供了对 JUnit 和 TestNG 测试的支持。

Spring框架搭建

  • 创建java项目,导入jar包,配制xml文件

  • 创建maven项目,注解+xml

  • 创建springboot项目,编写javaconfig

2、Spring IOC的xml配置使用

  1. public class SqlServiceImpl implements SqlService {
  2.    private MysqlDao mysqlDao;
  3.    public SqlServiceImpl(){
  4. //       mysqlDao=new MysqlDaoImpl();
  5.        mysqlDao=new OracleDaoImpl();
  6.   }
  7.    public void show() {
  8.        mysqlDao.show();
  9.   }
  10. }

为啥使用IOC?

IOC演

当我们面向接口编程,创建完接口和实现类后,发现实现类跟接口类之间存在耦合(牵一发而动全身),后来使用工厂模式,类的创建交给工厂类完成,这样实现类又与工厂有耦合,最后采用工厂+反射+配置文件的模式。(工厂类里面的getBean方法根据id参数返回实例对象,通过反射创建实例。)

IOC简单的来说就是:将原本在程序中手动创建实现类对象的控制权,交由spring 框架管理,即创建实现类对象控制权被反正到了spring框架。

DI(Dependecy Injection)

DI:依赖注入的概念,就是在spring创建这个对象的过程,将这个对象所依赖的属性注入进去。

IOC与DI关系

DI是实现IOC的方式,通过DI依赖注入达到IOC控制反转的效果。

IOC的Hello测试

  • 导入spring相关依赖

  1. <!--maven会添加context所依赖的其他依赖-->
  2. <!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
  3. <dependency>
  4.     <groupId>org.springframework</groupId>
  5.     <artifactId>spring-context</artifactId>
  6.     <version>5.3.20</version>
  7. </dependency>
  8. <!-- https://mvnrepository.com/artifact/junit/junit -->
  9. <dependency>
  10.    <groupId>junit</groupId>
  11.    <artifactId>junit</artifactId>
  12.    <version>4.13.2</version>
  13.    <scope>test</scope>
  14. </dependency>
  • 创建清晰的结构层次

  1. //第一层dao层
  2. //HelloDao接口
  3. public interface HelloDao {
  4.    public void show();
  5. }
  6. //HelloDaoImpl
  7. public class HelloDaoImpl implements HelloDao {
  8.    public void show() {
  9.        System.out.println("Input hello!");
  10.   }
  11. }
  12. //HelloService
  13. public interface HelloService {
  14.    public void show();
  15. }
  16. //HelloServiceImpl
  17. public class HelloServiceImpl implements HelloService {
  18.    private HelloDao helloDao;
  19.    public void setHelloDao(HelloDao helloDao) {
  20.        this.helloDao = helloDao;
  21.   }
  22.    public void show() {
  23.        helloDao.show();
  24.   }
  25. }

  • 创建spring的xml文件

  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.       xsi:schemaLocation="http://www.springframework.org/schema/beans
  5.       http://www.springframework.org/schema/beans/spring-beans.xsd">
  6.    <bean class="com.my.dao.impl.HelloDaoImpl" id="h1"></bean>
  7.    <bean class="com.my.service.impl.HelloServiceImpl" id="hello">
  8.        <property name="helloDao" ref="h1"></property>
  9.    </bean>
  10. </beans>

  • 测试代码

  1. public class HelloTest {
  2.    private HelloService helloService;
  3.    @Test
  4.    public void test(){
  5.        ApplicationContext context= new ClassPathXmlApplicationContext("Hello.xml");
  6.        helloService =(HelloServiceImpl) context.getBean("hello");
  7.        helloService.show();
  8.   }
  9. }

容器概念

//applicationContext是springIOC容器的代表,它负责实例化,配置和组装Bean
//applicationContext spring顶层核心接口
    //ClassPathXmlApplicationContext 根据项目路径的xm1配置来实例化spring容器
    //FileSystemXmlApplicationContext 根据磁盘路径的xml配置来实例化spring容器
    //AnnotationConfigApplicationContext 根据javaconfig来配置实例化spring容器
ApplicationContext context= new ClassPathXmlApplicationContext("Hello.xml");
//容器实例化就会加载所有bean,**bean的存在结构是map**
//加载多个xml,只需要ClassPathXmlApplicationContext("Hello.xml","dao.xml");

AppicationContext是Spring loC容器实现的代表,它负责实例化,配置和组装Bean。容器通过读取配置元数据获取有关实例化、配置和组装哪些对象的说明。配置元数据可以使用XML、Java注解或Java代码来呈现。它允许你处理应用程序的对象与其他对象之间的互相依赖关系。

配置元数据

  1. 使用xml的配置

  2. 基于注解的配置

  3. 基于Java的配置

获取Bean

helloService =(HelloServiceImpl) context.getBean("hello");
/*
1、通过类来获取Bean  getBean(User.class)
2、通过Bean的名字或者id来获取Bean getBean("user"),需要强制转化
3、通过Bean的名字加上类型 getBean("user",User.class)
*/

XML文件标签

<!--  导入.xml文件  -->
<import resource="spring.xml"></import>
<!--  设置别名  -->
<alias name="user" alias="employye"></alias>
<!--  description用于描述  -->
<!--  name可以设置多个名字,但要用空格或者逗号及冒号  -->
<bean class="com.my.service.impl.HelloServiceImpl" id="hello" name="user user1,user2:user3">
    <description>你好呀</description>
    <property name="helloDao" ref="h1"></property>
</bean>

外来知识@Before

@Before
public void before(){
    ......
}
//放在测试类中,会在所有测试类加载之前,就加载。

依赖注入方式

  • 基于setter的依赖注入

<bean class="com.my.pojo.User" id="user">
    <property name="id" value="1"></property>
</bean>
<!--  setter注入,property属性的name是找的setName方法名,对应如setXXX,name="XXX"  -->

  • 基于构造函数的方法注入

<bean class="com.my.pojo.User" id="user">
    <constructor-arg name="id" value="1"></constructor-arg>
</bean>
<!--  constructor-arg中属性name可以省略,但要按照顺序来;也可以使用index来给设置的值找对应的下标,下标从0开始;可以使用type来指定参数类型  -->

不同数据类型值的注入

  1. <bean>
  2. <property name="list">
  3. <null></null>
  4. </property>
  5. <property name="list">
  6. <list>
  7. <value></value>
  8. <value></value>
  9. </list>
  10. </property>
  11. <property name="map">
  12. <map>
  13. <entry key="" value=""></entry>
  14. <entry value-ref="Object"></entry>
  15. </map>
  16. </property>
  17. <property name="Object">
  18. <bean>
  19. </bean>
  20. </property>
  21. </bean>

p命名空间简化基于setter属性注入

  1. xmlns:p="http://www.springframework.org/schema/p"
  2. <!--spring默认调用无参构造函数,所以定义了有参构造函数,最好同时定义无参构造函数-->
  3. <bean class="com.my.pojo.User" id="user" p:id="1" p:name="张三" p:password="123456"></bean>
  4. <!--p命名空间不支持集合的,p:--》alt+enter-->
  5. <!--如果是集合-->
  6. <bean class="com.my.pojo.User" id="user" p:id="1" p:name="张三" p:password="123456">
  7. <property>
  8. <list>
  9. ......
  10. </list>
  11. </property>
  12. </bean>

c命名空间简化基于构造函数属性注入

  1. xmlns:c="http://www.springframework.org/schema/c"
  2. <bean class="com.my.pojo.User" id="user" c:id="4" c:name="张三">
  3. </bean>

Spring基于XML高级使用

depends-on:改变加载顺序

  1. <!--depends-on:会提前加载-->
  2. <bean class="com.my.pojo.Bos" id="bos" depends-on="user">
  3. <property name="name" value="你好"></property>
  4. <property name="age" value="22"></property>
  5. <property name="user" ref="user"></property>
  6. </bean>
  7. <bean class="com.my.pojo.User" id="user">
  8. <property name="id" value="1"></property>
  9. <property name="name" value="张三"></property>
  10. <property name="password" value="123456"></property>
  11. </bean>

lazy-init:懒加载

  1. <!--lazy-init:true 在使用的时候才加载,为不是随着spring容器一起-->
  2. <bean class="com.my.pojo.User" id="user" lazy-init="true"></bean>

Bean的作用域

  • 默认单例(Singleton)作用域

<!--同一个id只会创建一个对象,scope="singleton"如果没有写,是默认的单例模式-->
<bean class="com.my.pojo.User" id="user"  scope="singleton"></bean>
<!--单例存在一个线程安全问题,如果多线程读写,很容易出错-->
  • 原型(Propertype)

<!--多例-->
<bean class="com.my.pojo.User" id="user" c:id="4" scope="prototype"></bean>
  • 其他作用域(request、session、application、websocket):需要集成web

Bean的实例化

  • 默认调用无参构造函数 无法干预

  • 静态工厂方法实例化Bean

<bean class="com.my.pojo.People" id="people" factory-method="createFactory"></bean>
<!--通过加载com.my.pojo.People,然后调用createFactory方法来实例化对象,以此达到效果-->
  • 抽象工厂方法实例化Bean

<bean class="com.my.pojo.User" id="user" factory-method="createFactory" factory-bean="PeopleFactory"></bean>
<!--使用了抽象工厂方法-->

自动注入

一个类使用另一个类时,另一个类就是可以实现自动注入

<!--autowire:自动注入,
byType:根据类型
byName:根据set方法的名字
constructor:根据构造函数的参数名匹配,再根据类型匹配-->
<bean class="com.my.pojo.User" id="user" autowire="byType"></bean>
  • 优先注入

<!--primary优先:如果使用自动注入时,没有通过名字找到,但通过类型找到多个就可以使用primary来设置优先级-->
<bean class="com.my.pojo.User" id="user" primary='true'></bean>
<bean class="com.my.pojo.User" id="user2"></bean>
<!--autowire-candidate="false"就是不参入注入-->
<bean class="com.my.pojo.User" id="user" autowire-candidate="false"></bean>

Bean生命周期回调实现

  • 实现接口(InitializingBean, DisposableBean)

  1. public class Employye implements InitializingBean, DisposableBean {
  2. private int id;
  3. //初始化
  4. public void afterPropertiesSet() throws Exception {
  5. System.out.println("实例化Bean");
  6. }
  7. //注销
  8. public void destroy() throws Exception {
  9. System.out.println("注销Bean");
  10. }
  11. }
  1. @Test
  2. public void test3(){
  3. ApplicationContext context=new ClassPathXmlApplicationContext("user.xml");
  4. Employye employye=context.getBean("employye",Employye.class);
  5. //ApplicationContext没有close()方法,但是它的子类有
  6. ((ConfigurableApplicationContext)context).close();
  7. }

ApplicationContext没有close()方法,但是它的子类有,解决办法:Spring applicationContext爆出警告“Resource leak: 'applicationContext' is never closed” - 勤俭的搬运工 - 博客园 (cnblogs.com).close ()%3B)

  • 基于配置(init-method,destroy-method)

<!--基于配置-->
<bean class="com.my.pojo.Employye" id="employye" init-method="afterPropertiesSet" destroy-method="destroy"></bean>
  • 基于注解(暂不学)

Spring创建第三方Bean对象

在Spring中,很多对象都是单实例的,在日常的开发中,我们经常需要使用某些外部的单实例对象,例如数据库连接池,下面我们来讲解下如何在spring中创建第三方bean实例。

    <!--数据库连接配置-->
    <bean class="com.alibaba.druid.pool.DruidDataSource">
        <property name="name" value="root"></property>
        <property name="password" value="123456"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC"></property>
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
     </bean>

属性文件(db.properties)的引入

注意:${}

  1. <bean class="com.my.pojo.User" id="user">
  2. <property name="id" value="${value}"></property>
  3. </bean>
  4. <!--第一种方式-->
  5. <context:property-placeholder location="db.properties"></context:property-placeholder>
  6. xmlns:context="http://www.springframework.org/schema/context"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans.xsd
  9. http://www.springframework.org/schema/context
  10. https://www.springframework.org/schema/context/spring-context.xsd">
  11. <!--第二种方式-->
  12. <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
  13. <property name="locations" value="db.properties"></property>
  14. </bean>

Spring表达式语言SpEL(Spring Expression Language)

  • #{1+2}:运算表达式 || #{其他bean.name} || #{其他bean} || #{T(方法的路径)}(这里的T表示静态方法)

3、Spring IOC的注解使用

  • @Repository 标记数据访问层

  • @Service 标记业务逻辑层

  • Controller 标记控制层

  • @Component 标记非三层以外的普通类

IOC不支持接口,所以注意不要标记在接口上。上面的注解就是将该类注入到spring容器中。

  1. @Controller
  2. public class UserController {
  3. }
  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="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context
  8. https://www.springframework.org/schema/context/spring-context.xsd">
  9. <!-- 扫描包-->
  10. <context:component-scan base-package="com.my"></context:component-scan>
  11. </beans>
  1. public class MyTest {
  2. @Test
  3. public void test1(){
  4. ApplicationContext context=new ClassPathXmlApplicationContext("springIoc.xml");
  5. UserController userController=context.getBean("userController",UserController.class);
  6. //spring容器会自动将类名第一字母小写,所以可以根据类名首字母小写来获取。
  7. //UserController userController=context.getBean(UserController.class);
  8. System.out.println(userController);
  9. }
  10. }

配置扫描包过滤

  • include-filter

  • exclude-filter

  1. <!--type:
  2. annotation(注解)
  3. assignable(类的完整限定命名)
  4. aspectj org.example.. *Service+根据切面表达式设置排除\包括,一般不会使用
  5. regex oxgl. example\. Default,*要由目标组件类名匹配的正则表达式。
  6. custom org.example. MyTypeFilter org. springframework.core.type . TypeFilter接口的自定义实现。
  7. -->
  8. <!--下面就是说按照注解,排除Repository-->
  9. <!--use-default-filters默认为true,扫描该包下所有的注解-->
  10. <context:component-scan base-package="com.my" use-default-filters="false">
  11. <context:include-filter type="assignable" expression="com.my.service.UserServiceImpl"/>
  12. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
  13. </context:component-scan>

@Value设置依赖注入的属性的值

  1. @Component
  2. public class User {
  3. //@Value 除了写硬编码值,还可以写${} && #{}
  4. //@Value就可以使用properties文件中键值对
  5. //可以使用#{}来获取其他的Bean的属性值
  6. @Value("hello")
  7. private String name;
  8. public String getName() {
  9. return name;
  10. }
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. }

类的自动注入

  1. @Controller
  2. public class UserController {
  3. //@Autowired自动注入,如果没有@Autowired,就会报空指针异常
  4. /*
  5. bytype byname
  6. @Autowired默认优先根据类型匹配注入,没找到会根据名字找,名字没找到,就是报错
  7. 改变:1、重新设置名字
  8. 2、在注入的注解上设置value属性(@Service(value="userService"))
  9. 3、@Qualifier("userServiceImpl")
  10. 4、@primary设置自动注入的最要Bean
  11. 5、使用泛型T来实现自动注入限定
  12. */
  13. @Autowired
  14. @Qualifier("userServiceImpl")
  15. private UserService userService;
  16. public void test(){
  17. userService.test();
  18. }
  19. }
  1. //使用T泛型
  2. public interface PublicTestService<T> {
  3. T getTest();
  4. }
  1. @Service
  2. public class Test1Service implements PublicTestService<User> {
  3. public User getTest() {
  4. return new User();
  5. }
  6. }
  1. @Service
  2. public class Test2Service implements PublicTestService<Bos> {
  3. public Bos getTest() {
  4. return new Bos();
  5. }
  6. }
  1. @Controller
  2. public class UserController {
  3. // @Autowired
  4. // @Qualifier("userServiceImpl")
  5. @Autowired
  6. private PublicTestService<User> userService;
  7. public void test(){
  8. User user=userService.getTest();
  9. System.out.println(user);
  10. }
  11. }
  1. @Test
  2. public void test1(){
  3. UserController userController=context.getBean("userController",UserController.class);
  4. // UserController userController=context.getBean(UserController.class);
  5. userController.test();
  6. }

@Autowired

//Target 该方法可以标记在CONSTRUCTOR、METHOD、PARAMETER、FIELD、ANNOTATION_TYPE
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Autowired {
    boolean required() default true;
}

@Resource

import javax.annotation.Resource;

@Controller
public class UserController {
    @Resource  //跟@Autowired作用一样,但是jdk的不是spring框架的。@Resource优先根据名字匹配
    private PublicTestService<User> userService;
    public void test(){
        User user=userService.getTest();
        System.out.println(user);
    }
}

@DependsOn("xxx")依赖某个类,由xml文件depends-on属性的作用

@Lazy懒加载,由xml文件lazy-init,要使用的时候才加载。

@Scope("singleton")默认单例模式,由xml文件scope

Bean生命周期使用注解监听

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

问题:

  • 怎样开启注解装配?

  • @Component,@Controller,@Repository,@Service有何区别?

  • 当使用@Autowired匹配到多个类型怎么解决?

4、Spring IOC的javaconfig使用

  • 外来知识:xxx instanceof xxx,后面的类是前面的类的类,子类,接口实现类

配制自己的Bean

  1. @Configuration //相当于xml文件,标记spring的配置类
  2. @ComponentScan(basePackages = "com.my") //自动扫描包,相当于<context:component-scan>
  3. public class IoCJavaConfig {
  4. }
  1. @Controller
  2. public class HelloController {
  3. public void show(){
  4. System.out.println("hello");
  5. }
  6. }
  1. public class MyTest {
  2. @Test
  3. public void test1(){
  4. //加载spring上下文
  5. ApplicationContext context=new AnnotationConfigApplicationContext(IoCJavaConfig.class);
  6. HelloController helloController=context.getBean("helloController",HelloController.class);
  7. helloController.show();
  8. }
  9. }

配制第三方的Bean

  1. @Configuration //相当于xml文件,标记spring的配置类
  2. @ComponentScan(basePackages = "com.my") //自动扫描包,相当于<context:component-scan>
  3. public class IoCJavaConfig {
  4. /*
  5. <bean class="com.alibaba.druid.pool.DruidDataSource" id="dataSource">
  6. <property name="name" value="root"></property>
  7. <property name="password" value="123456"></property>
  8. <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC"></property>
  9. <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
  10. </bean>
  11. */
  12. @Bean //标记方法,由于在xml文件中添加一个bean
  13. public DruidDataSource dataSource(){
  14. DruidDataSource dataSource=new DruidDataSource();
  15. dataSource.setPassword("1234556");
  16. dataSource.setUsername("root");
  17. dataSource.setUrl("jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC");
  18. dataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
  19. System.out.println("druid数据源");
  20. return dataSource;
  21. }
  22. }
  1. @Test
  2. public void test2(){
  3. ApplicationContext context=new AnnotationConfigApplicationContext(IoCJavaConfig.class);
  4. DataSource dataSource=context.getBean("dataSource",DruidDataSource.class);
  5. System.out.println(dataSource);
  6. }

基于javaconfig实现的类,可以在@Bean(init-method="")像这样注入属性。

引入properties文件

  1. @Component
  2. public class User {
  3. @Value("${name}") //使用properties中的key为name
  4. private String name;
  5. public String getName() {
  6. return name;
  7. }
  8. public void setName(String name) {
  9. this.name = name;
  10. }
  11. }
//在javaconfig类上加这个注解
@PropertySource("db.properties")   ||   @PropertySource("classpath:db.properties")
  1. @Test
  2. public void test3() {
  3. User user = context.getBean(User.class);
  4. System.out.println(user.getName());
  5. }

一个javaconfig类引入一个javaconfig类

@Import(IoCJavaConfig_01.class) //import除了引入,也可以注入

在javaconfig中使用依赖外部Bean,就是从传递的参数考虑。使用内部Bean直接调用方法即可

通过实现ImportSelector接口来多个引入

  1. @Component
  2. public class MyImportSelector implements ImportSelector {
  3. //实现ImportSelector,给Import({""})多个引入一样
  4. public String[] selectImports(AnnotationMetadata importingClassMetadata) {
  5. //可以以字符串的形式返回多个Bean
  6. return new String[]{"com.my.pojo.User"}; //这里是类的完整限定名,因此获取必须是类名获取
  7. }
  8. }
@Import(MyImportSelector.class) //在javaconfig类上添加

通过实现ImportBeanDefinitionRegistrar接口来引入

  1. @Component
  2. public class MyImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
  3. public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata
  4. , BeanDefinitionRegistry registry) {
  5. GenericBeanDefinition genericBeanDefinition=new GenericBeanDefinition();
  6. genericBeanDefinition.setBeanClass(User.class);
  7. registry.registerBeanDefinition("user",genericBeanDefinition);
  8. }
  9. }
@Import(MyImportBeanDefinitionRegistrar.class) //在javaconfig类上添加
  • 外来知识

最后SpringIoC核心Bean注入,自动装配。

5、SpringAOP介绍与原理

AOP: Aspect Oriented Programming面向切面编程

OOP:Object Oriented Programming面向对象编程

面向切面编程:基于OOP基础之上新的编程思想,OOP面向的主要对象是类,而AOP面向的主要对象是切面,在处理日志、安全管理、事务管理等方面有非常重要的作用。AOP是Spring中重要的核心点,虽然SOC容器没有依赖AOP,但是AOP提供了非常强大的功能,用来对IOC做补充。通俗点说的话就是在程序运行期间。

在不修改原有代码的情况下增强到之前写好的方法中的指定位置这种编程的方式叫AOP,AOP是一个思想。

AOP的底层用的代理模式,代理是一种设计模式。

代理模式

  • 静态代理 缺点:需要为每一个被代理的类创建一个代理类

  • 动态代理(AOP的底层是用的动态)。

    1. jdk动态代理(必须实现接口)

    2. cglib动态代理(不需要实现接口)

  1. //静态代理
  2. public interface Meituan {
  3. public void takeOutFood();
  4. }
  5. public class MeituanWorker implements Meituan{
  6. private Customer customer;
  7. public MeituanWorker(Customer customer){
  8. this.customer=customer;
  9. }
  10. public void takeOutFood() {
  11. customer.takeOutFood();
  12. System.out.println("外卖工作者来了!");
  13. }
  14. }
  15. public class Customer implements Meituan{
  16. public void takeOutFood() {
  17. System.out.println("请求外卖小哥!");
  18. }
  19. }
  20. public class MyTest {
  21. private MeituanWorker meituanWorker=new MeituanWorker(new Customer());
  22. @Test
  23. public void test(){
  24. meituanWorker.takeOutFood();
  25. }
  26. }
  1. //jdk动态代理
  2. public interface Subject {
  3. public void request();
  4. }
  5. public class RealSubject implements Subject{
  6. public void request() {
  7. System.out.println("RealSubject类");
  8. }
  9. }
  10. public class MyProxy implements InvocationHandler {
  11. private Object target;//声明被代理的对象
  12. public MyProxy(Object target){
  13. this.target=target;
  14. }
  15. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  16. System.out.println("InvocationHandler代理了!");
  17. Object o=method.invoke(target,args);
  18. return o;
  19. }
  20. }
  21. public class MyTest {
  22. @Test
  23. public void test(){
  24. /*
  25. ClassLoader loader, //类加载器,通常指被代理类的接口的类加载器
  26. Class<?>[] interfaces, //类型,通常指被代理类的接口类型
  27. InvocationHandler h //委托执行的处理类
  28. */
  29. ClassLoader loader=Subject.class.getClassLoader();
  30. Class<?>[] interfaces=new Class[]{Subject.class};
  31. InvocationHandler handler=new MyProxy(new RealSubject());
  32. Subject o=(Subject)Proxy.newProxyInstance(loader,interfaces,handler);
  33. System.out.println(o.getClass());
  34. o.request();//这个方法进入MyProxy类中的invoke方法
  35. }
  36. }

SpringAOP使用简单注解就解决了动态代理的复杂度。

SpringAOP切面、连接点、通知、切点

切面(Aspect) :指关注点横块化,这个关注点可能会横切多个对象,事务管理是企业级Java应用中有关横切关注点的例子,在Spring AOP中,切面可以使用遇用类基于模式的方式(schema-based approach)或者在曾通奥中以@Aspect注解(@Aspect注解方式)来实现。

连接点(join point):在程序执行过程中某个特定的点,例如展个方法调甲的时间点或者处理异常的时间点。在Spring AOP中,一个逐接点总是代表一个方法的执行。

通如(Advce):在切面的某个特定的连推点上执行的助作。通如有多种类型,包括“around", "belore’ and "afnter”等等。爆如的美型将在后围的章节进行讨论,许多AOP框菜,包括Spring在内。都是以拦截器骷遏知模型的。井榷护着一个以连接点为中心的翱截器链。

切点(Pointcut) :匹配连接点的断言。通知和切点表达式相关联,并在满足这个切点的连接点上运行(例如,当执行某个特定名称的方法时),切点表达式如何和连榱点匹配胜AOP的核心: Spring认使用Aspect切点语义。

 

通知类型

  1. 前置通知(Before adice):在连接点之帅运行但无法阻止执行流程进入连接点的通知(除非它引发异常).

  2. 后置返回通知(After returming advice):在连接点正常完成后执行的通知(例如,当方法没有抛出任何异常并正常返回时) .

  3. 后置异常通知(After throwing advice):在方法孢出异常混出时执行的通知.。

  4. 后置通知(总会执行)(After (finally) advice):当连接点退出的时候执行的通知(无论是正常返回还是异常退出).

  5. 环绕通知(Around Advice):环绕连接点的通知,例如方法调用。这是最强大的一种通知类型,环绕通知可以在方法调用前后完成自定义的行为。它可以选择是否继续执行连接点或直接返回自定义的返回值又或抛出异常将执行结束。

SpringAOP依赖

  1. <dependency>
  2. <groupId>org.aspectj</groupId>
  3. <artifactId>aspectjweaver</artifactId>
  4. <version>1.9.6</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework</groupId>
  8. <artifactId>spring-aspects</artifactId>
  9. <version>5.2.12.RELEASE</version>
  10. </dependency>
  • @Aspect 声明切面

  • @Component 注入spring容器

  • 什么是AOP?

  • Spring AoP and AspectJ AOP有什么区别?AOP有哪些实现方式?

  • JDK动态代理和CGLIB动态代理的区别

  • 如何理解Spring 中的代理?

  • 解释一下Spring AOP里面的几个名词

  • 搭建springAOP

6、SpringAOP使用详解

AOP切入点表达式

  • Spring AOP支持使用以下AspectJ切点标识符(PCD).用于切点表达式:

  • execution:用于匹配方法执行连接点。这是使用Spring AOP时使用的主要切点标识符。

  • within:限制匹配特定类型中的连接点(在使用Spring AOP时,只需执行在匹配类型中声明的方法)。

  • this:匹配实现了某个接口

  • target:限制匹配到连接点(使用Spring AOP时方法的执行),其中目标对象(正在代理的应用程序对象)是给定类型的实例。

  • args:限制与连接点的匹配(使用Spring AOP时方法的执行),其中变量是给定类型的实例。AOP) where the arguments are instances of the given types.

  • @target:限制与连接点的匹配(使用Spring AOP时方法的执行),其中执行对象的类具有给定类型的注解。

  • @args:;限制匹配连接点(使用Spring AOP时方法的执行),其中传递的实际参数的运行时类型具有给定类型的注解。

  • @within:限制与具有给定注解的类型中的连接点匹配(使用Spring AOP时在具有给定注解的类型中声明的方法的执行)。

  • @annotation:限制匹配连接点(在Spring AOP中执行的方法具有给定的注解)

execution语法:细粒度

 

其中:基本上类型都是完整限定名

within语法:粗粒度

只能指定到类,无法具体到某个方法。但可以将该类下的所有方法都匹配到。

within("com.my.service.impl.UserServiceImpl.*")
//因为指定到类,所以返回值类型可以不用写,默认多个*,方法也不用写,参数不用

@Annotation:可以根据注解的完整限定名来实现

@Annotation("java.lang.Override")
// @Override
//这里使用使用java.lang.Override不会起作用,可以换成@Longer注解的类,这里只是说明而已

外来小知识@Retention(RetentionPolicy.Source),如果编译为.class文件下不会有该接口或类

合并切点表达式 && ||

within("com.my.service.impl.UserServiceImpl.*")&&@Annotation("java.lang.Override")
//&& 和

通知顺序

try{
    前置通知
    后置通知
}catch{
    后置异常通知
}finally{
    后置返回通知
}
//正常顺序:前置通知、后置通知、 后置返回通知(这个可以按照)
//异常顺序:前置通知、后置通知、 后置异常通知(不能按照上面理解)

环绕通知

  1. //环绕通知
  2. @Around(value = "pointCut()")
  3. public Object arround(ProceedingJoinPoint joinPoint){
  4. String methodName=joinPoint.getSignature().getName();//方法名
  5. Object[] args=joinPoint.getArgs();//参数
  6. Object proceed=null;
  7. try {
  8. System.out.println("环绕的前置通知"+methodName+"方法开始,参数是"+Arrays.asList(args));
  9. proceed=joinPoint.proceed(args);
  10. System.out.println("环绕的返回通知"+methodName+"方法开始,返回值时"+proceed);
  11. } catch (Throwable throwable) {
  12. System.out.println("环绕的异常通知"+methodName+"方法异常,异常信息是"+throwable);
  13. }finally {
  14. System.out.println("环绕的后置通知"+methodName+"方法结束!");
  15. }
  16. return proceed;
  17. }

基于注解实现AOP

  1. @Configuration //为实现xml方式,注销该注解
  2. @Aspect
  3. public class LogAspect {
  4. @Pointcut("execution(* com.my.service.impl.*.*(..))")
  5. public void pointCut(){
  6. //提取公共部分
  7. }
  8. /*
  9. 前置通知
  10. 后置通知
  11. 环绕通知
  12. 后置异常通知
  13. 后置返回通知
  14. */
  15. @Before("pointCut() && @annotation(logger)")
  16. public void before(JoinPoint joinPoint, Logger logger){
  17. //JoinPoint连接点
  18. System.out.println(logger.name());//这样可以用于用户查询上,可以标注执行的方法,这里只是那@Logger这个注解做例子
  19. //获取方法名
  20. System.out.println("joinPoint.getSignature().getName() = " + joinPoint.getSignature().getName());
  21. //获取所有的参数
  22. Object[] args=joinPoint.getArgs();
  23. // for (Object arg : args) {
  24. // System.out.println(arg);
  25. // }
  26. //Arrays.asList(args)
  27. System.out.println("当前"+joinPoint.getSignature().getName()+"运行了!");
  28. System.out.println("参数为"+ Arrays.asList(args));
  29. }
  30. @After("execution(* com.my.service.impl.*.*(..))")
  31. public void after(){
  32. System.out.println("后置通知after!");
  33. }
  34. @AfterThrowing(value = "execution(* com.my.service.impl.*.*(..))",throwing = "ex")
  35. public void afterThrowing(Exception ex){
  36. // System.out.println("后置异常通知afterThrowing!");
  37. // System.out.println("报错异常为"+ex);
  38. //java 记录异常栈
  39. StringWriter sw=new StringWriter();
  40. ex.printStackTrace(new PrintWriter(sw,true));
  41. System.out.println("后置异常通知"+sw.getBuffer().toString());
  42. }
  43. @AfterReturning(value = "execution(* com.my.service.impl.*.*(..))",returning = "obj")
  44. public void afterReturning(Object obj){
  45. System.out.println("后置返回通知afterReturning!");
  46. System.out.println("返回值:"+obj);
  47. }
  48. //环绕通知
  49. @Around(value = "pointCut()")
  50. public Object arround(ProceedingJoinPoint joinPoint){
  51. String methodName=joinPoint.getSignature().getName();//方法名
  52. Object[] args=joinPoint.getArgs();//参数
  53. Object proceed=null;
  54. try {
  55. System.out.println("环绕的前置通知"+methodName+"方法开始,参数是"+Arrays.asList(args));
  56. proceed=joinPoint.proceed(args);
  57. System.out.println("环绕的返回通知"+methodName+"方法开始,返回值时"+proceed);
  58. } catch (Throwable throwable) {
  59. System.out.println("环绕的异常通知"+methodName+"方法异常,异常信息是"+throwable);
  60. }finally {
  61. System.out.println("环绕的后置通知"+methodName+"方法结束!");
  62. }
  63. return proceed;
  64. }
  65. }
  1. public class MyTest {
  2. @Autowired
  3. private UserController userController;
  4. @Test
  5. public void test(){
  6. ApplicationContext context=new ClassPathXmlApplicationContext("classpath:/springAop.xml");
  7. userController=context.getBean(UserController.class);
  8. System.out.println(userController.getClass());
  9. /*
  10. 没有被代理返回class com.my.controller.UserController
  11. */
  12. userController.test();
  13. }
  14. @Test
  15. public void test1(){
  16. ApplicationContext context=new ClassPathXmlApplicationContext("classpath:/springAop.xml");
  17. UserService userService=context.getBean(UserService.class);
  18. System.out.println(userService.getClass());
  19. /*
  20. userService.getClass()被AOP代理返回class com.sun.proxy.$Proxy22 这是一个动态代理类
  21. 这里也就解释了为什么我们要使用接口来接收返回值,而不能使用具体类,因为接口下可有多个实现类,具体类就不一样了.
  22. springAOP会使用jdk,cglib代理,关键看代理的类是否实现接口.
  23. 这里为什么是接口.class UserService.class
  24. 因为ioc在注入时,被aop截取,从而被代理,然后返回代理类存入spring容器com.sun.proxy.$Proxy22,
  25. 因此我们通过具体实现类会报找不到bean出错,而接口就不一样了,代理类也会实现原始接口,所有接口.class就能获取到
  26. 想要的Bean,但可以根据名字获取.
  27. */
  28. User user=new User(1,"ni","122");
  29. userService.add(user);
  30. }
  31. }

基于xml的方式实现AOP(也可叫基于Schema的方式)

  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. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context
  9. https://www.springframework.org/schema/context/spring-context.xsd
  10. http://www.springframework.org/schema/aop
  11. https://www.springframework.org/schema/aop/spring-aop.xsd">
  12. <context:component-scan base-package="com.my"></context:component-scan>
  13. <bean class="com.my.config.LogAspectTwo" id="logAspectTwo"></bean>
  14. <!-- AOP实现-->
  15. <aop:config>
  16. <aop:aspect ref="logAspectTwo">
  17. <aop:pointcut id="cutAllService" expression="execution(* com.my.service.impl.*.*(..))"/>
  18. <aop:before method="before"
  19. pointcut="execution(* com.my.service.impl.*.*(..)) &amp;&amp; @annotation(logger)"></aop:before>
  20. <aop:after method="after" pointcut-ref="cutAllService"></aop:after>
  21. <aop:after-throwing method="afterThrowing" pointcut-ref="cutAllService" throwing="ex"></aop:after-throwing>
  22. <aop:after-returning method="afterReturning" returning="obj" pointcut-ref="cutAllService"></aop:after-returning>
  23. <aop:around method="arround" pointcut-ref="cutAllService"></aop:around>
  24. </aop:aspect>
  25. </aop:config>
  26. </beans>
  • Spring通知有哪些类型?

  • 解释基于XML Schema方式的切面

  • 实现解释基于注解的切面实现

7、Spring声明式事务(外加jdbc操作)

事务:把一组业务当成一个业务来做;要么都成功,要么都失败,保证业务操作完整性的一种数据库机

实例:转账业务,一个人转账,一个人收账,要保证业务完整性。

SpringJdbcTemplate 操作jdbc的模板方法

jdbc.username=root
password=123456
url=jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC&characterEncoding=utf-8
driverName=com.mysql.cj.jdbc.Driver
  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="http://www.springframework.org/schema/beans
  6. http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context
  8. https://www.springframework.org/schema/context/spring-context.xsd">
  9. <context:component-scan base-package="com.my"></context:component-scan>
  10. <context:property-placeholder location="db.properties"></context:property-placeholder>
  11. <bean class="com.alibaba.druid.pool.DruidDataSource" id="dataSource">
  12. <property name="username" value="${jdbc.username}"></property>
  13. <property name="password" value="${password}"></property>
  14. <property name="url" value="${url}"></property>
  15. <property name="driverClassName" value="${driverName}"></property>
  16. </bean>
  17. <!-- 两个template-->
  18. <bean class="org.springframework.jdbc.core.JdbcTemplate" id="jdbcTemplate">
  19. <property name="dataSource" ref="dataSource"></property>
  20. </bean>
  21. <bean class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate" id="jdbcTemplate2">
  22. <constructor-arg type="javax.sql.DataSource" ref="dataSource"/>
  23. </bean>
  24. </beans>
  1. public class MyTest {
  2. ApplicationContext context;
  3. @Before
  4. public void before(){
  5. context=new ClassPathXmlApplicationContext("classpath:/springaop.xml");
  6. }
  7. @Test
  8. public void test(){
  9. DruidDataSource dataSource=context.getBean(DruidDataSource.class);
  10. System.out.println(dataSource);
  11. }
  12. @Test
  13. public void test1(){
  14. JdbcTemplate jdbcTemplate=context.getBean(JdbcTemplate.class);
  15. Long aLong = jdbcTemplate.queryForObject("select count(1) from user", Long.class);
  16. System.out.println(aLong);
  17. }
  18. @Test
  19. public void test2(){
  20. JdbcTemplate jdbcTemplate=context.getBean(JdbcTemplate.class);
  21. //数据库字段名与属性名一样
  22. // User user = jdbcTemplate.queryForObject("select * from user where id=2"
  23. // ,new BeanPropertyRowMapper<User>(User.class));
  24. //官方的
  25. User user=jdbcTemplate.queryForObject("select * from user where id=2"
  26. ,(resultSet,i)->{
  27. User o=new User();
  28. o.setId(resultSet.getInt("id"));
  29. o.setName(resultSet.getString("name"));
  30. o.setSex(resultSet.getString("sex"));
  31. return o;
  32. });
  33. System.out.println(user.toString());
  34. }
  35. @Test
  36. public void test3(){
  37. JdbcTemplate jdbcTemplate=context.getBean(JdbcTemplate.class);
  38. List<User> users=jdbcTemplate.query("select * from user"
  39. ,new BeanPropertyRowMapper<User>(User.class));
  40. System.out.println(users);
  41. }
  42. @Test
  43. public void test4(){
  44. JdbcTemplate jdbcTemplate=context.getBean(JdbcTemplate.class);
  45. //曾加、删除、修改都是update方法
  46. int i=jdbcTemplate.update("insert into user value(?,?,?)",1,"三三","男");
  47. System.out.println(i);
  48. }
  49. @Test
  50. public void test5(){
  51. // NamedParameterJdbcTemplate 具名参数
  52. NamedParameterJdbcTemplate template = context.getBean(NamedParameterJdbcTemplate.class);
  53. Map<String,Object> map=new HashMap<>();
  54. map.put("id",1);
  55. User user=template.queryForObject("select * from user where id=:id"
  56. ,map,new BeanPropertyRowMapper<User>(User.class));
  57. System.out.println(user);
  58. }
  59. }

官方推荐一个dao使用一个JDBCTemplate,所以不需要使用@Autowired。

    //官方推荐
    private JdbcTemplate jdbcTemplate;
    
    @Autowired
    public void setDataSource(DruidDataSource dataSource){
        this.jdbcTemplate=new JdbcTemplate(dataSource);
    }

    //自己写的
    @Autowired
    private JdbcTemplate jdbcTemplate;	

事务的四大特性ACID

  • A原子性:原子性指的是在一组业务操作下要么都成功要么都失败原子性指的是在一组业务操作下要么都成功要么都失败

  • C一致性:事务前后的数据要保证数据的一致性

  • I隔离性:在并发情况下事物之间要相互隔离。

  • D持久性:数据一旦保存就是持久性的。

总结:在事务控制方面,主要有两个分类: 编程式事务∶在代码中直接加入处理事务的逻辑,可能需要仕代码中显示调用beginTransaction()、commit()、rollback()等事务管理相关的方法

声明式事务∶在方法的外部添加注解或者直接在配置文件中正,通过AOP方法模块化,进而实现事务管理。spring的AOP恰好可以完成此功能:事务管理代码的固定模式作为一种横切关注点,通过AOP方法模块化,进而实现 声明式事务。

声明事物就是利用了AOP思想,对某个面进行监控管理,spring提供了@Transacation(标记在方法和类),事务的本质是根据connection来管理的,不同的数据源(jdbc、mybatis等等)的事务管理器不同

@Transacation写在方法上面,控制粒度更细,建议@Transactional写在业务逻辑层上,因为只有业务逻辑层才会有嵌套调用的情况。

  1. <!--事物管理配置-->
  2. <bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="transactionManager">
  3. <property name="dataSource" ref="dataSource"></property>
  4. </bean>
  5. <!--基于注解的方式的事务,开启事务的注解驱动-->
  6. <tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

事务属性

  1. isolation:设置事务的隔离级别

  2. propagation:事务的传播行为

  3. noRollbackFor:那些异常事务可以不回滚

  4. noRollbackForClassName:填写的参数是全类名

  5. rollbackFor:哪些异常事务需要回滚

  6. rollbackForClassName:填写的参数是全类名

  7. readOnly:设置事务是否为只读事务

  8. timeout:事务超出指定执行时长后自动终止并回滚,单位是秒

事务隔离级别

用来解决并发事务所产生一些问题: 并发:同一个时间,多个线程同时进行请求。 什么时候会生成并发问题:在并发情况下,对同一个数据(变量、对象)进行读写操作才会产生并发问题并发会产生什么问题?

  1. 脏读(解决:@Transactional(isolation = Isolation.READ_COMMITTED)),脏读就是例如两个人同时访问一个东西,一个人改变这个东西(但没有提交),另一个人的数据会变。这就导致另一个人数据不一致,所以使用READ_COMMITTED,但一个人提交后,数据才变。这个问题数据库已经默认实现了

  2. 不可重复读(解决:@Transactional(isolation = Isolation.REPEATABLE_READ),简称行锁),不可重复读就是在脏读中事务已提交,但那个人再次查询时,发现数据不一致,这导致一次访问前后数据改变,因此这就使用到了行锁,表示有人操作时,给数据上了一把锁(使其另一个线程静止增删查改等操作)。

  3. 幻影读(解决:@Transactional(isolation = Isolation.SERIALIZABLE)),幻影读其实跟不可重复读一样,只是不可重复读针对行,解决方式行锁,幻影读针对的是表,解决方式就是表锁。表锁运行效率低。

隔离级别阻止并发问题

脏读幻读不可重复读
Read uncommitted
Read committed×
Repeatable read××
Serializable×××
  1. 并发安全:SERIALIZABLE>REPEATABLE_READ>READ_COMNMITTED

  2. 运行效率:READ_COMITTED>REPEATABLE_READ>SERIALIZABLE

外来小知识数据库的默认事物隔离级别:通过select @@tx_isolation; #MYSQL: REPEATABLE-READ #ORACLE: READ_COMMITTED

mysql默认级别 REPEATABLE-READ

事务传播性

事务的传播特性指的是当一个事务方法(@Transactional这个注解诸如的方法)被另一个事务方法调用时,这个事务方法应该如何进行?

希望如果外部存在事务就用外部的,外部不存在就自己开启事务

@Transactional(propagation = Propagation.REQUIRED)
事务传播行为类型外部不存在事务外部存在事务使用方式
REQUIRED(默认)开启新的事务融合到外部事务中@Transactional(propagation = Propagation.REQUIRED)适用增删改查
SUPPORTS不开启新的事务融合到外部事务中@Transactional(propagation = Propagation.SUPPORTS)适用查询
REQUIRES NEW开启新的事务挂起外部事务,创建新的事务@Transactional(propagation = Propagation.REQUIRES_NEW)适用内部事务和外部事务不存在业务管理情况,如日志
NOT_SUPPORTED不开启新的事务挂起外部事务@Transactional(propagation = Propagation.NOT_SUPPORTED)不常用
NEVER不开启新的事务抛出异常@Transactional(propagation = Propagation.NEVER)不常用
MANDATORY抛出异常融合到外部事务中@Transactional(propagation = Propagation.MANDATORY)不常用

REQUIRES NEW使用时要多创建一个类,分为父子方法,父子方法存在不同类上。

超时属性(timeout):指定事务等待的最长时间(秒)

当前事务访问数据时,有可能访问的数据被别的数据进行加锁的处理,那么此时事务就必须等待,如果等待时间过长给用户造成的体验感差。

基于xml实现

  1. <!-- 声明事务切入的-->
  2. <aop:config>
  3. <aop:pointcut id="transactionPointCut" expression="execution(* com.my.service.impl.*.*(..))"/>
  4. </aop:config>
  5. <!--用来明确切点匹配到的方法,哪些方法需要使用事务-->
  6. <tx:advice id="advice">
  7. <tx:attributes>
  8. <!-- 可以使用通配符-->
  9. <tx:method name="add*"/>
  10. <tx:method name="delete*"/>
  11. <tx:method name="update*"/>
  12. <tx:method name="get*" read-only="true" propagation="SUPPORTS"></tx:method>
  13. </tx:attributes>
  14. </tx:advice>

基于注解实现

  1. @Service
  2. public class UserServiceImpl implements UserService {
  3. @Autowired
  4. private UserDao userDao;
  5. /*
  6. 扣钱
  7. */
  8. @Override
  9. @Transactional(timeout = 3) //可以通过捕获异常设置提醒
  10. public void reduceAge() {
  11. try {
  12. Thread.sleep(4);
  13. } catch (InterruptedException e) {
  14. e.printStackTrace();
  15. }
  16. System.out.println("reduce!");
  17. userDao.reduceAge();
  18. }
  19. /*
  20. 转账
  21. */
  22. @Override
  23. @Transactional(isolation = Isolation.SERIALIZABLE)
  24. public void trans() {
  25. reduceAge();//一个减
  26. // int i=1/0; 通过这个来看事务处理情况,前面执行了,后面没有执行,这就是没有@Transactional
  27. addAge();//一个加
  28. }
  29. /*
  30. 存钱
  31. */
  32. @Override
  33. @Transactional(propagation = Propagation.REQUIRED)
  34. public void addAge() {
  35. System.out.println("add!");
  36. userDao.addAge();
  37. }
  38. }
  • Spring事务的实现方式和实现原理

  • 说一下Spring的事务传播行为

  • 说一下spring的事务隔离?

  • Spring框架的事务管理有哪些优点?

8、Spring源码详解(未完工)

总结

  • 什么是Spring框架,Spring框架主要包含哪些模块

    Spring是一个开源框架,Spring是一个轻量级的Java开发框架。它是为了解决企业应用开发的复杂性而创建的。框架的主要优势之一就是其分层架构,分层架构允许使用者选择使用哪一个组件。同时为J2EE应用程序开发提供集成的框架。Spring使用基本的JavaBean来完成以前只可能由EJB完成的事情。然而,Spring的用途不仅限于服务器端的开发。从简单性、可测试性和松耦合的角度而言,任何Java应用都可以从Spring中受益。Spring的核心是控制反转(loC)和面向切面(AOP)。简单来说,Spring是一个分层的full-stack(一站式)轻量级开源框架。

  • 架构发展历程

    1. 单一应用架构 当网站流量很小时,只需一个应用,将所有功能都部署在一起,以减少部署节点和成本。此时,用于简化增删改查工作量的数据访问框架(ORM)是关键。

    2. 垂直应用架构 当访问量逐渐增大,单一应用增加机器带来的加速度越来越小,提升效率的方法之一是将应用拆成互不相干的几个用,以提升效率。此时,用于加速前端页面开发的Web框架(MVC)是关键。

    3. 分布式服务架构 当垂直应用越来越多,应用之间交互不可避免,将核心业务抽取出来,作为独立的服务,逐渐形成稳定的服务中心,使前端应用能更快速的响应多变的市场需求。此时用于提高业务复用及整合的分布式服务框架(RPC)是关键。

    4. 流动计算架构 当服务越来越多,容量的评估,小服务资源的浪费等问题逐渐显现,此时需增加一个调度中心基于访问压力实时管理集群容量,提高集群利用率。此时,用于提高机器利用率的资源调度和治理中心(SOA)是关键。

  • 什么是Spring? spring是一个轻量级的开源框架。 spring为了解决企业级应用开发的业务运辑层和其他各层的耦合问题 。 spring是一个IOC和AOP的容器框架。 lOC:控制反转 AOP:面向切面编程 容器:包含并管理应用对象的生命周期

  • Spring框架的优势 1、Spring通过DI、AOP和消除样板式代码来简化企业级Java开发 2、Spring框架之外还存在一个构建在核心框架之上的庞大生态圈,它将Spring扩展到不同的领域,如Web服务、REST、移动开发以及NoSQL 3、低侵入式设计,代码的污染极低 4、独立于各种应用服务器,基于Spring框架的应用,可以真正实现Write Once,RunAnywhere的承诺 5、Spring的loC容器降低了业务对象替换的复杂性,提高了组件之间的解 6、Spring的AOP允许将一些用士分刚文主、提供了更好的复用 7、Spring的ORM和DAO提供了与第三方持久层框架的的良好整合,并简化了底层的数据库访问 8、Spring的高度开放性,并不强制应用完全依赖于Spring。开发者可自由选用Spring框架的部分或全部

  • Ioc和D是什么? 1、控制反转是就是应用本身不负责依赖对象的创建和维护,依赖对象的创建及维护是由外部容器负责的.这样控制权就有应用转移到了外部容器.控制权的转移就是控制反转 2、依赖注入是指:在程序运行期间,由外部容器动态地将依赖对象注入到组件中如:一般,通过构造函数注入或者setter注入

  • 描述下Spring lOc容器的初始化过程 Spring IOC容器的初始化简单的可以分为三个过程: 第一个过程是Resource资源定位。这个Resouce指的是BeanDefinition的资源定位。这个过程就是容器找数据的过程,就像水桶装水需要先找到水一样。 第二个过程是BeanDefinition的载入过程。这个载入过程是把用户定义好的Bean表示成loc容器内部的数据结构。而这个容器内部的数据结构就是BeanDefition。 第三个过程是向IOC容器注册这些BeanDefinition的过程,这个过程就是将前面的BeanDefition保存到HashMap中的过程。

看源代码总结问题

  • 源代码中的包结构

  • 源代码可以从切入点看

  • 注释加笔记做好

  • 做好代码模块化

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

闽ICP备14008679号