iis服务器助手广告广告
返回顶部
首页 > 资讯 > 后端开发 > Python >在Spring中如何使用动态代理?
  • 749
分享到

在Spring中如何使用动态代理?

2024-04-02 19:04:59 749人浏览 泡泡鱼

Python 官方文档:入门教程 => 点击学习

摘要

Spring动态代理 定义自定义切面 -  diyNodePoint package com.lxc.diy; import org.aspectj.lang.an

Spring动态代理

定义自定义切面 -  diyNodePoint


package com.lxc.diy;
 
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
 

@Aspect
public class diyNotePoint {
   @Before("execution(* com.lxc.service.UserServiceImp.*(..))")
   public void before() {
       System.out.println("前置切面");
   }
   @After("execution(* com.lxc.service.UserServiceImp.*(..))")
   public void after() {
       System.out.println("后置切面");
   }
}

定义接口 - UserService


package com.lxc.service;
 
public interface UserService {
    public void query();
    public void delete();
    public void edit();
    public void add();
}

重写接口类 - UserServiceImp


package com.lxc.service;
public class UserServiceImp implements UserService{
    @Override
    public void query() {
        System.out.println("query");
    }
    @Override
    public void delete() {
        System.out.println("delete");
    }
    @Override
    public void edit() {
        System.out.println("edit");
    }
    @Override
    public void add() {
        System.out.println("add");
    }
}

beans.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:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://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">
    
    <!--定义bean-->
    <bean id="imp" class="com.lxc.service.UserServiceImp"/>
    <bean id="diyNotePoint" class="com.lxc.diy.diyNotePoint" />
    <!--添加:注解支持-->
    <aop:aspectj-autoproxy />
 
</beans>

测试:


import com.lxc.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
public class Test {
    public static void main(String[] args) {
        ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
        UserService userService = ctx.getBean("imp", UserService.class);
        userService.add();
    }
}

 输出如下:

到此这篇关于在Spring中如何使用动态代理?的文章就介绍到这了,更多相关Spring动态代理内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: 在Spring中如何使用动态代理?

本文链接: https://www.lsjlt.com/news/129161.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作