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

网站架构价格国家免费职业培训平台

网站架构价格,国家免费职业培训平台,云速成美站做网站好吗,wordpress更改ip地址后图片处理😀前言 手动实现 Spring 底层机制的第2篇 实现了任务阶段一编写自己 Spring 容器-准备篇【2】 🏠个人主页:尘觉主页 🧑个人简介:大家好,我是尘觉,希望我的文章可以帮助到大家,您的…

😀前言
手动实现 Spring 底层机制的第2篇 实现了任务阶段一编写自己 Spring 容器-准备篇【2】

🏠个人主页:尘觉主页
在这里插入图片描述

🧑个人简介:大家好,我是尘觉,希望我的文章可以帮助到大家,您的满意是我的动力😉😉

在csdn获奖荣誉: 🏆csdn城市之星2名
⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ 💓Java全栈群星计划top前5
⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ ⁣⁣⁣⁣ 🤗 端午大礼包获得者

💕欢迎大家:这里是CSDN,我总结知识的地方,欢迎来到我的博客,感谢大家的观看🥰
如果文章有什么需要改进的地方还请大佬不吝赐教 先在次感谢啦😊

文章目录

  • 😀手动实现 Spring 底层机制 实现任务阶段一编写自己 Spring 容器-准备篇【2】
    • 创建SmartAnimalable接口
    • 创建SmartDog类
    • 创建SmartAnimalAspect切面类
    • 修改类beans.xml
    • 创建AppMain类
    • 输出结果
  • 😄简单分析
    • AOP 和 BeanPostProces关系
    • 看一下 AnnotationAwareAspectJAutoProxyCreator 的类图
    • 分析
    • 😄总结

😀手动实现 Spring 底层机制 实现任务阶段一编写自己 Spring 容器-准备篇【2】

创建SmartAnimalable接口

public interface SmartAnimalable {float getSum(float i, float j);float getSub(float i, float j);
}

创建SmartDog类

@Component
public class SmartDog implements SmartAnimalable {public float getSum(float i, float j) {float res = i + j;System.out.println("SmartDog-getSum-res=" + res);return res;}public float getSub(float i, float j) {float res = i - j;System.out.println("SmartDog-getSub-res=" + res);return res;}
}

创建SmartAnimalAspect切面类

@Component
@Aspect
public class SmartAnimalAspect {//给SmartDog配置前置,返回,异常,最终通知//前置通知@Before(value = "execution(public float com.wyxde.spring.aop.SmartDog.getSum(float, float))")public void showBeginLog(JoinPoint joinPoint) {//通过连接点对象joinPoint 可以获取方法签名Signature signature = joinPoint.getSignature();System.out.println("SmartAnimalAspect-切面类showBeginLog()[使用的myPointCut()]-方法执行前-日志-方法名-" + signature.getName() + "-参数 "+ Arrays.asList(joinPoint.getArgs()));}//返回通知@AfterReturning(value = "execution(public float com.wyxde.spring.aop.SmartDog.getSum(float, float))", returning = "res")public void showSuccessEndLog(JoinPoint joinPoint, Object res) {Signature signature = joinPoint.getSignature();System.out.println("SmartAnimalAspect-切面类showSuccessEndLog()-方法执行正常结束-日志-方法名-" + signature.getName() + " 返回的结果是=" + res);}//异常通知@AfterThrowing(value = "execution(public float com.wyxde.spring.aop.SmartDog.getSum(float, float))", throwing = "throwable")public void showExceptionLog(JoinPoint joinPoint, Throwable throwable) {Signature signature = joinPoint.getSignature();System.out.println("SmartAnimalAspect-切面类showExceptionLog()-方法执行异常-日志-方法名-" + signature.getName() + " 异常信息=" + throwable);}//最终通知@After(value = "execution(public float com.wyxde.spring.aop.SmartDog.getSum(float, float))")public void showFinallyEndLog(JoinPoint joinPoint) {Signature signature = joinPoint.getSignature();System.out.println("SmartAnimalAspect-切面类showFinallyEndLog()-方法最终执行完毕-日志-方法名-" + signature.getName());}}

修改类beans.xml

配置自动扫描的包, 同时引入对应的名称空间

  1. 如果我们是普通的java项目, beans.xml 放在src下
  2. 如果我们是java maven 项目, beans.xml 放在 src/main/resources
<?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/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd"><context:component-scan base-package="com.wyxde.spring.component"/><context:component-scan base-package="com.wyxde.spring.aop"/><!--启用基于注解方式的AOP功能--><aop:aspectj-autoproxy/><!--配置后置处理器--><bean class="com.wyxde.spring.process.MyBeanPostProcessor" id="myBeanPostProcessor"/>
</beans>

创建AppMain类

public class AppMain {public static void main(String[] args) {//测试看看是否可以得到spring容器中的bean , 同时看看依赖注入是否OKApplicationContext ioc =new ClassPathXmlApplicationContext("beans.xml");UserAction userAction = (UserAction) ioc.getBean("userAction");UserAction userAction2 = (UserAction) ioc.getBean("userAction");System.out.println("userAction=" + userAction);System.out.println("userAction2=" + userAction2);UserDao userDao = (UserDao) ioc.getBean("userDao");System.out.println("userDao=" + userDao);UserService userService = (UserService) ioc.getBean("userService");System.out.println("userService=" + userService);//测试一下当前的依赖注入userService.m1();//测试一下AOPSmartAnimalable smartDog = ioc.getBean(SmartAnimalable.class);smartDog.getSum(10, 2);}
}

输出结果

img

😄简单分析

AOP 和 BeanPostProces关系

  1. AOP 实现 Spring 可以通过给一个类,加入注解 @EnableAspectJAutoProxy 来指定, 比

img

  1. 我们来追一下@EnableAspectJAutoProxy

img

img

img

img

img

img

看一下 AnnotationAwareAspectJAutoProxyCreator 的类图

img

分析

  1. AOP 底层是基于 BeanPostProcessor 机制的.

  2. 即在 Bean 创建好后,根据是否需要 AOP 处理,决定返回代理对象,还是原生 Bean

  3. 在返回代理对象时,就可以根据要代理的类和方法来返回

  4. 其实这个机制并不难,本质就是在 BeanPostProcessor 机制 + 动态代理技术

  5. 下面我们就准备自己来实现 AOP 机制, 这样小伙伴们就不在觉得 AOP 神秘,通透很多了.

😄总结

到本文为止以及全部完成了准备了下一篇就开始正式手动实现 Spring 底层机制

手动实现 Spring 底层机制【初始化 IOC容器+依赖注入+BeanPostProcessor 机制+AOP】系列

手动实现 Spring 底层机制 实现任务阶段一编写自己 Spring 容器-准备篇【1】

😁热门专栏推荐
想学习vue的可以看看这个
java基础合集
数据库合集
redis合集
nginx合集
linux合集
等等等还有许多优秀的合集在主页等着大家的光顾感谢大家的支持

🤔欢迎大家加入我的社区 尘觉社区

文章到这里就结束了,如果有什么疑问的地方请指出,诸佬们一起来评论区一起讨论😁
希望能和诸佬们一起努力,今后我们一起观看感谢您的阅读🍻
如果帮助到您不妨3连支持一下,创造不易您们的支持是我的动力🤞

http://www.zhongyajixie.com/news/61451.html

相关文章:

  • 素材下载网站开发阿里指数查询
  • 谷歌有做网站建设中国推广网
  • 企业网站设计经典案例专业网络推广公司
  • 北京大学网站建设黄冈网站建设收费
  • 什么网站可以做ppt四川省最新疫情情况
  • python网站开发高并发有哪些搜索引擎
  • 东莞搭建网站要多少钱seo关键词优化的技巧
  • 响应式网站建设服务商制作网站免费
  • wordpress 媒体库位置网站关键词优化排名软件系统
  • 北京市建网站郴州网站seo外包
  • 找人做网站需要注意什么问题如何网络推广
  • wordpress微信登录插件下载失败seo 优化 工具
  • 买拆车件上什么网站seo描述是什么
  • wordpress自动发布aso优化排名
  • 网站插入聊天站长之家alexa排名
  • 小学生个人网站怎么做西安网是科技发展有限公司
  • 建物流网站seo需求
  • 哈尔滨正规制作网站公司外链工具在线
  • 网站建设宣传推广网站免费
  • 服务器可以做网站台州seo快速排名
  • 临沂网站建设培训班微博推广费用一般多少
  • 衡水网站开发查询网入口
  • 重庆网站设计建设郑州网站推广电话
  • 个人网站注册流程app下载注册推广平台
  • 深圳营销型网站建设+宝安西乡企业网站建设价格
  • 南京做网站企业怎么做一个公司网站
  • 张家港网站设计口碑营销5t
  • 做网站为什么要做备案接入免费友情链接网站
  • 做网站zwnet河南网站建设制作
  • 付费查看wordpressseo服务方案