IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> ssm框架复习巩固 -> 正文阅读

[Java知识库]ssm框架复习巩固

ssm框架复习的第七天:AOP注解开发? Spring的事务管理

1.AOP注解开发的步骤:

1.导入依赖

     <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>
<-Aspectjweaver依赖-->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.7</version>
        </dependency>

2.通知类和目标类

/*
    日志开发的业务代码
 */
@Component
@Aspect
public class LogUtils {
    public void printLog(){
        System.out.println("记录日志.....");
    }
    //切点表达式
    @Pointcut("execution(* com.swlz.service..*(..))")
    public void pc(){

    }

    //    方法执行之前
    @Before("pc()")
    public void beforeLog(){
        System.out.println("记录日志  ...beforeLog");
    }
//    方法执行之后
   @AfterReturning("pc()")
    public void afterReturingLog(){
        System.out.println("记录日志  ...afterReturingLog");
    }
//    方法出现异常的时候
    @AfterThrowing("pc()")
    public void afterThrowingLog(){
        System.out.println("记录日志 ...afterThrowingLog");
    }
//    所有方法执行完之后,也就是最终
    @After("pc()")
    public void afterLog(){
        System.out.println("记录日志 ...afterLog");
    }
}
package com.swlz.service.impl;


import com.swlz.service.IUserService;
import org.springframework.stereotype.Service;

/**
 * 用户基本增删改查的业务代码
 */
@Service("userService")
public class UserServiceImpl implements IUserService {
    public void findAll() {
        System.out.println("UserServiceImpl 调用Dao查询所有用户");
    }
    public void saveUser(String user) {

        System.out.println("UserServiceImpl 调用Dao保存用户" + user);

    }
    public void updateUser() {

        System.out.println("UserServiceImpl 调用Dao更新用户");
    }
    public void deleteUser() {

        System.out.println("UserServiceImpl 调用Dao删除用户");
    }

}

3.配置类

@Configuration
@ComponentScan(basePackages = "配置包扫描,例如:com.swlz")
@EnableAspectJAutoProxy
public class ApplicationConfig {

}

4.测试类

    @Test
    public void testAOP(){
        ApplicationContext context = new AnnotationConfigApplicationContext(ApplicationConfig.class);
        IUserService userService = context.getBean("userService", IUserService.class);
        userService.findAll();
    }

2.声明式事务管理

Spring的声明式事物管理

1. jdbc事务

1. 为了保证程序在运行过程中数据的正确性

例子:转账

1. 向一个账号减钱

2. 向另外一个账户加钱

事物的四大特性??

?ACID

1. 原子性

事物的多个操作要么同时执行成功,要么同时执行失败

2. 一致性

事物在执行前后数据要保持一致

3. 隔离性(很难得到保证)

?多个事物在同时执行的时候,相互不能影响

?事务的隔离级别

1.未提交读(读未提交)

2.提交读(读已提交)

3.可重复读

4.串性化(可序列化)

4. 持久性

事务一旦提交,数据就会持久保存到数据库

?jdbc事物控制(多个操作必须使用同一个连接对象)

1. connection

  

2. jdbc事物控制(多个操作必须使用同一个连接对象)

1. connection

  1. setAtuoCommit(false)??开启事务 设置事务手动提交 默认是自动提交

  2. commit();? 提交事务

  3. rollback(); 回滚事务

用户一次请求对应一个线程

一个用户的请求---对应一个线程----对应一个数据库连接(对象)?

用户的请求 使用 当前线程 当前连接 使用同一个线程和同一个连接对象

TreadLocal类(底层结构是一个map,key:Thread,value:connection):用来绑定当前线程的

对应一个线程--对应一个数据库连接(对象)?

3.声明式事物管理基于xml配置

spring基于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:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--Spring 声明式事务配置-->
<!--第一步:配置Spring的事物管理器 -->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--第二步: 配置事务通知-->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--第四步,在通知中配置哪些方法需要被事物控制-->
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" isolation="READ_COMMITTED" read-only="false" />
<tx:method name="find*" propagation="SUPPORTS" isolation="REPEATABLE_READ" read-only="true"/>
</tx:attributes>
</tx:advice>
<!--第三步配置aop-->
<aop:config>
<!--配置切点-->
<aop:pointcut id="pt" expression="execution(* com.bianyiit.service..*(..))"/>
<!--配置切面 = 切点 + 通知-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt"></aop:advisor>
</aop:config>
</beans>

今日学习感受:最后一句话:现在拼命学习的你,一定是未来的你在想你求救!

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-12-28 22:46:11  更:2021-12-28 22:47:29 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 7:50:56-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码