当前位置: 首页 > news >正文

长沙做网站nn微联讯点很好网站倒计时代码

长沙做网站nn微联讯点很好,网站倒计时代码,网站建设外包发展情况,易网站票网站开发AOP的概述 什么是AOP#xff1f; 在软件业#xff0c;AOP为Aspect Oriented Programming的缩写#xff0c;意为#xff1a;面向切面编程 • AOP是一种编程范式#xff0c;隶属于软工范畴#xff0c;指导开发者如何组织程序结构 • AOP最早由AOP联盟的组织提出的,制定了…AOP的概述 什么是AOP 在软件业AOP为Aspect Oriented Programming的缩写意为面向切面编程 • AOP是一种编程范式隶属于软工范畴指导开发者如何组织程序结构 • AOP最早由AOP联盟的组织提出的,制定了一套规范.Spring将AOP思想引入到框架中,必须遵守AOP联盟的规范 • 通过预编译方式或者运行期动态代理实现程序功能的统一维护的一种技术 • AOP是OOP的延续是软件开发中的一个热点也是Spring框架中的一个重要内容是函数式编程的一种衍生范型 • 利用AOP可以对业务逻辑的各个部分进行隔离从而使得业务逻辑各部分之间的耦合度降低提高程序的可重用性同时提高了开发的效率 AOP:面向切面编程.(思想.—解决OOP遇到一些问题) AOP采取横向抽取机制取代了传统纵向继承体系重复性代码性能监视、事务管理、安全检查、缓存 AOP可以在不修改源代码的前提下对程序进行增强 AOP的底层实现 JDK的动态代理技术 1、为接口创建代理类的字节码文件.class文件 2、使用ClassLoader类加载器将字节码文件加载到JVM 3、创建代理类实例对象(proxyObject)执行对象的目标方法 AOP的底层实现是动态代理Spring框架的动态代理是基于JDK的接口动态代理还有基于继承的cglib动态代理有兴趣的读者可以自行学习 接口实现的动态代理相比于单继承的cglib实现的动态代理更为灵活 AOP的优势 运行期间不修改源代码的情况下对已有的方法进行增强 优势 减少重复的代码提供开发的效率维护方便 SpringAop的相关名词解释 Joinpoint(连接点) 所谓连接点是指那些被拦截到的点。在spring中,这些点指的是方法,因为spring只支持方法类型的连接点 Pointcut(切入点) 所谓切入点是指我们要对哪些Joinpoint进行拦截的定义其实和连接点基本上是一回事Pointcut Joinpoint拦截 Advice(通知/增强) 所谓通知是指拦截到Joinpoint之后所要做的事情。 通知分为 前置通知如开启事务, 后置通知如提交事务, 异常通知如回滚事务, 最终通知如关闭资源, 环绕通知上面所有通知的集合体但是需要自己完整写出环绕通知方法 Target(目标对象) 代理的目标对象也就是代理类对象代理的目标类对象 Weaving(织入) 是指把增强应用到目标对象来创建新的代理对象的过程 大白话就是代理类实现接口重写的方法包含增强的部分 创建代理类对象的过程 Proxy代理 一个类被AOP织入增强后就产生一个结果代理类 Aspect(切面) 是切入点和通知的结合以后咱们自己来编写和配置的代理类 AOP实战 以mysql的事务管理为例 1. 需要用到的maven依赖 以下依赖中最重要的是AOP相关的依赖 dependenciesdependencygroupIdorg.springframework/groupIdartifactIdspring-context/artifactIdversion5.0.2.RELEASE/version/dependencydependencygroupIdcommons-logging/groupIdartifactIdcommons-logging/artifactIdversion1.2/version/dependencydependencygroupIdlog4j/groupIdartifactIdlog4j/artifactIdversion1.2.12/version/dependency!--有单元测试的环境Spring5版本Junit4.12版本--dependencygroupIdjunit/groupIdartifactIdjunit/artifactIdversion4.12/versionscopetest/scope/dependency!--连接池--dependencygroupIdcom.alibaba/groupIdartifactIddruid/artifactIdversion1.1.10/version/dependency!--mysql驱动包--dependencygroupIdmysql/groupIdartifactIdmysql-connector-java/artifactIdversion5.1.6/version/dependency!-- Spring整合Junit测试的jar包 --dependencygroupIdorg.springframework/groupIdartifactIdspring-test/artifactIdversion5.0.2.RELEASE/versionscopetest/scope/dependency!--AOP相关依赖--!-- AOP联盟 --dependencygroupIdaopalliance/groupIdartifactIdaopalliance/artifactIdversion1.0/version/dependency!-- Spring Aspects --dependencygroupIdorg.springframework/groupIdartifactIdspring-aspects/artifactIdversion5.0.2.RELEASE/version/dependency!-- aspectj --dependencygroupIdorg.aspectj/groupIdartifactIdaspectjweaver/artifactIdversion1.8.3/version/dependency/dependencies 2. ApplicationContext.xml配置文件 引入具体的AOP的schema约束 ?xml version”1.0” encoding”UTF-8”? beans xmlns”http://www.springframework.org/schema/beans”xmlns:xsi”http://www.w3.org/2001/XMLSchema-instance”xmlns:context”http://www.springframework.org/schema/context”xmlns:aop”http://www.springframework.org/schema/aop”xsi:schemaLocation”http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsd”/beans 3. 实体类实体Dao实体DaoImpl实体对应的ServiceService对应的ServiceIImpl mysql连接池模拟工具类TxUtils因为我们要模拟的就是mysql的事务提交/回滚所以事务相关的原子方法需要我们独自实现 真实开发场景下我们要么使用Spring自带的事务管理机制要么使用mybatis管理事务不会这样赤裸裸地封装连接池 package com.qcby.mySpring03.utils;import com.alibaba.druid.pool.DruidDataSource;import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException;/*** 事务的工具类*/ public class TxUtils {private static DruidDataSource ds null;// 使用ThreadLocal存储当前线程中的Connection对象private static ThreadLocalConnection threadLocal new ThreadLocalConnection();// 在静态代码块中创建数据库连接池static {try {ds new DruidDataSource();ds.setDriverClassName(com.mysql.cj.jdbc.Driver);ds.setUrl(jdbc:mysql:///mybatis_demo?serverTimezoneUTC);ds.setUsername(root);ds.setPassword(980708);ds.setInitialSize(5);ds.setMaxActive(10);ds.setMaxWait(3000);} catch (Exception e) {throw new ExceptionInInitializerError(e);}}/*** Method: getConnection* Description: 从数据源中获取数据库连接* Anthor:* return Connection* throws SQLException*/public static Connection getConnection() throws SQLException {// 从当前线程中获取ConnectionConnection conn threadLocal.get();if (conn null) {// 从数据源中获取数据库连接conn getDataSource().getConnection();// 将conn绑定到当前线程threadLocal.set(conn);}return conn;}/*** Method: startTransaction* Description: 开启事务* Anthor:**/public static void startTransaction() {try {Connection conn threadLocal.get();if (conn null) {conn getConnection();// 把 conn绑定到当前线程上threadLocal.set(conn);}// 开启事务conn.setAutoCommit(false);} catch (Exception e) {throw new RuntimeException(e);}}/*** Method: rollback* Description:回滚事务* Anthor:*/public static void rollback() {try {// 从当前线程中获取ConnectionConnection conn threadLocal.get();if (conn ! null) {// 回滚事务conn.rollback();}} catch (Exception e) {throw new RuntimeException(e);}}/*** Method: commit* Description:提交事务* Anthor:*/public static void commit() {try {// 从当前线程中获取ConnectionConnection conn threadLocal.get();if (conn ! null) {// 提交事务conn.commit();}} catch (Exception e) {throw new RuntimeException(e);}}/*** Method: close* Description:关闭数据库连接(注意并不是真的关闭而是把连接还给数据库连接池)* Anthor:**/public static void close() {try {// 从当前线程中获取ConnectionConnection conn threadLocal.get();if (conn ! null) {conn.close();// 解除当前线程上绑定connthreadLocal.remove();}} catch (Exception e) {throw new RuntimeException(e);}}/*** Method: getDataSource* Description: 获取数据源* Anthor:* return DataSource*/public static DataSource getDataSource() {// 从数据源中获取数据库连接return ds;}} 实体类Car public class Car {private int id;private String carName;private int size;private String color;Overridepublic String toString() {return Car{ carName carName \ , size size , color color \ };}public Car(int id, String carName, int size, String color) {this.id id;this.carName carName;this.size size;this.color color;}public Car() {}public Car(String carName, int size, String color) {this.carName carName;this.size size;this.color color;}public int getId() {return id;}public void setId(int id) {this.id id;}public String getCarName() {return carName;}public void setCarName(String carName) {this.carName carName;}public int getSize() {return size;}public void setSize(int size) {this.size size;}public String getColor() {return color;}public void setColor(String color) {this.color color;} } CarDao接口 import java.sql.SQLException; import java.util.List;public interface CarDao {ListCar findAll();Car getById(Integer id);Integer insert(Car car) throws SQLException;Integer update(Car car);Integer delete(Integer id);} CarDaoImpl实现类 import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List;Repository(carDao) public class CarDaoImpl implements CarDao {// Autowired // private DataSource dataSource;public ListCar findAll() {//jdbc 查询数据库 拿到数据//1.加载驱动 连接池 // dataSource.setDriverClassName(com.mysql.cj.jdbc.Driver); // dataSource.setUrl(jdbc:mysql:///spring_db); // dataSource.setUsername(root); // dataSource.setPassword(root);Connection conn null;PreparedStatement stmt null;ResultSet rs null;ListCar carList new ArrayListCar();//2.获取连接对象try {conn TxUtils.getConnection();//3.编写sqlString sql select * from car;//4.获取执行sql的stmt对象stmt conn.prepareStatement(sql);//5.执行sqlrs stmt.executeQuery();//6.遍历结果集while (rs.next()) {//实体类 account的实体类Car car new Car();car.setId(rs.getInt(id));car.setCarName(rs.getString(car_name));car.setSize(rs.getInt(size));car.setColor(rs.getString(color));// 存储carList.add(car);}//7.关闭conn.close();stmt.close();rs.close();} catch (Exception e) {e.printStackTrace();}System.out.println(持久层操作数据库保存订单);return carList;}public Car getById(Integer id) {return null;}public Integer insert(Car car) throws SQLException {Integer result null;//jdbc 工具类实现获取连接 操作数据库 完成新增数据Connection connection TxUtils.getConnection();// 编写sql语句String sql insert into car values (null,?,?,?);// 预编译SQL语句PreparedStatement stmt connection.prepareStatement(sql);// 设置值stmt.setString(1, car.getCarName());stmt.setInt(2, car.getSize());stmt.setString(3, car.getColor());// 执行操作result stmt.executeUpdate();// 关闭资源 conn不能关闭stmt.close();return result;}public Integer update(Car car) {return null;}public Integer delete(Integer id) {return null;} } CarService接口 import java.sql.SQLException; import java.util.List;public interface CarService {ListCar findAll();void saveAll(Car car1, Car car2) throws SQLException;void saveAllTransaction(Car car1, Car car2); } CarServiceImpl实现类 package com.qcby.mySpring03.service.impl;import com.qcby.mySpring03.entity.Car; import com.qcby.mySpring03.mapper.CarDao; import com.qcby.mySpring03.service.CarService; import com.qcby.mySpring03.utils.TxUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service;import java.sql.SQLException; import java.util.List;Service(carService) public class CarServiceImpl implements CarService {Autowiredprivate CarDao carDao;public void setCarDao(CarDao carDao) {this.carDao carDao;}public ListCar findAll() {return carDao.findAll();}// 不使用事务的情况下public void saveAll(Car car1, Car car2) throws SQLException {carDao.insert(car1);// 模拟异常// int a 1 / 0;carDao.insert(car2);}public void saveAllTransaction(Car car1, Car car2) {try {// 开启事务TxUtils.startTransaction();// 保存1账号carDao.insert(car1);// 模拟异常int a 1/0;// 保存2账号carDao.insert(car2);// 提交事务/回滚事务TxUtils.commit();} catch (Exception e) {// 打印异常信息e.printStackTrace();// 出现异常回滚事务TxUtils.rollback();} finally {// 关闭资源TxUtils.close();}}} 3.2 bean导入到ApplicationContext.xml中 bean idcarDao classcom.qcby.mySpring03.mapper.impl.CarDaoImpl/bean idcarService classcom.qcby.mySpring03.service.impl.CarServiceImpl/4. 自定义切面类切入点表达式通知/增强方法实现在ApplicationContext.xml中配置AOP 这一部分是最重要的 4.1 自定义切面类切入点表达式通知/增强方法实现 // 自定义切面类 public class MyAspect {/*** 通知/增强的方法*/public void log() {// 发送手机短信// 发送邮件/记录日志/事务管理System.out.println(xml增强的方法执行了...);} }切入点表达式 切入点表达式的格式如下 execution([修饰符] 返回值类型 包名.类名.方法名(参数))修饰符可以省略不写不是必须要出现的。返回值类型是不能省略不写的根据你的方法来编写返回值。可以使用 * 代替。包名例如com.tx.demo3.BookDaoImpl首先com是不能省略不写的但是可以使用*代替中间的包名可以使用 * 号代替如果想省略中间的包名可以使用*类名也可以使用 * 号代替也有类似的写法*DaoImpl方法也可以使用 * 号代替参数如果是一个参数可以使用 * 号代替如果想代表任意参数使用 .. 举例所有省略都不写的切入点表达式 execution(public void com.qcby.mySpring03.service .impl.UserServiceImpl.findAll()) 简写过后 execution(* *.qcby.*.service .impl.*ServiceImpl.*(..)) AOP配置 !--自定义切面类导入-- bean idmyAspect classcom.qcby.mySpring03.aop.MyAspect/ !--AOP配置-- aop:configaop:aspect refmyAspectaop:before methodlogpointcutexecution( * *.qcby.*.service.impl.*ServiceImpl.*(..))//aop:aspect/aop:config 测试 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;RunWith(SpringJUnit4ClassRunner.class) ContextConfiguration(value {classpath:ApplicationContext.xml}) public class XmlAopTest {Autowiredprivate UserService userService;Autowiredprivate CarService carService;Testpublic void xmlAopTest() {carService.findAll();} } 运行结果 5. 纯注解AOP实战 通知类型注解 Before—前置通知 AfterReturing—后置通知 Around—环绕通知目标对象方法默认不执行的需要手动执行 After—最终通知 AfterThrowing—异常抛出通知 注解自定义切面类 Component Aspect public class MyAnnoAspect {/*** 通知*/Before(value execution( * com.qcby.*.service.impl.*ServiceImpl.*(..)))public void startTransaction() {System.out.println(前置通知执行开启事务......);TxUtils.startTransaction();}AfterReturning(value execution( * com.qcby.*.service.impl.*ServiceImpl.*(..)))public void commit() {System.out.println(后置通知执行提交事务......);TxUtils.commit();}AfterThrowing(value execution( * com.qcby.*.service.impl.*ServiceImpl.*(..)))public void rollback() {System.out.println(异常抛出通知执行回滚事务......);TxUtils.rollback();}After(value execution( * com.qcby.*.service.impl.*ServiceImpl.*(..)))public void close() {System.out.println(最终通知执行关闭资源......);TxUtils.close();}} AOP配置类开启AOP import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.EnableAspectJAutoProxy;Configuration EnableAspectJAutoProxy public class SpringAopConfig { }Spring扫描包配置类顺便引入上一个配置类 Configuration ComponentScan(com.qcby) Import(value {SpringAopConfig.class}) public class SpringJunit4Config { }在CarServiceImplServiceCarDaoImpl(Repository)上控制反转的注解并配置各自的依赖注入的注解(Autowired) Service(carService) public class CarServiceImpl implements CarService {Autowiredprivate CarDao carDao;Repository(carDao) public class CarDaoImpl implements CarDao {// 有连接池工具类就不需要注入DataSource了 // Autowired // private DataSource dataSource;测试 import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;import java.sql.SQLException;RunWith(SpringJUnit4ClassRunner.class) ContextConfiguration(classes SpringJunit4Config.class) public class TransactionTest {Autowiredprivate CarService carService;Testpublic void shiwuTest() throws SQLException {Car car1 new Car(car1, 100, green);Car car2 new Car(car2, 100, yellow);carService.saveAll(car1, car2);} } 由于存在除0异常所以事务应该会回滚 执行结果 出现除0异常事务回滚 没有出现异常事务提交
http://www.hkea.cn/news/14260168/

相关文章:

  • 贵阳网站建设哪家好方舟网络推广公司口碑
  • 网站报名系统怎么做专业建站公司提供详细的功能描述及报价
  • 做学校网站如何在电商网站做市场调研
  • 备案通过的网站wordpress 获取当前文章栏目链接
  • wordpress 做手机站seo经理招聘
  • 有没有做推文的网站盐城网站开发渠道合作
  • 协会工作方案网站建设困难遵义营商环境建设局网站
  • 青岛网站建设与推广广州app开发公司排名十强
  • 南宁 网站开发123网址之家
  • 外贸公司网站如何做推广定制网站开发方案
  • 网站建设维护费合同范本硬件开发是什么意思
  • 媒体网站模版谭木记网页制作教程
  • 站长权重网站美化教程下载
  • 东莞做网站服务商access 可以做网站不
  • 邢台做网站推广费用张家港网站设计优化
  • 进贤南昌网站建设公司外贸网络营销公司
  • 网站运营有哪些岗位站群系列服务器做视频网站
  • 工商所什么网站可做年报东莞勒流网站制作
  • 住房城乡住房和城乡建设部网站首页成都优化网站哪家公司好
  • eclipse 网站开发学习网站在线支付接口申请
  • 网站建设月薪怎样提高网站的权重
  • 织梦网站列表微信免费开发平台
  • html5 手机端网站做优惠卷网站
  • 怎么做原创动漫视频网站手机版传奇发布网站
  • 电子政务网站建设要求做注塑机的网站
  • 广东网站建设智搜宝wordpress 关闭
  • 2狠狠做网站深圳画册设计网站
  • 用django做网站淮南网备查询
  • 网站建设与网页设计试卷光效网站
  • html5 网站 代码xp做网站