spring--AOP--日志---demo1---bai

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
AOP日志DEMO1:
 
实体类:
 
package com.etc.entity;
 
import org.aspectj.lang.annotation.Pointcut;
 
public class User implements IUser
{
    public static int NORMAL = 1;//普通用户角色
    public static int ADMIN = 2;    //管理员角色
    private int role;  //所属的角色
     
    public int getRole() {
        return role;
    }
 
    public void setRole(int role) {
        this.role = role;
    }
 
     
    public void login() {
        System.out.println("执行登录了!");
         
    }
 
     
    public void reg() {    
        System.out.println("执行注册了!");
    //throw new RuntimeException("注册过程发生异常!");
    }
 
}
================================================================
实体类需实现的接口:
 
package com.etc.entity;
 
//定义用户接口
public interface IUser
{
    void login(); //登录
    void reg(); //注册
     
}
=================================================================
通知类:
 
package com.etc.advice;
 
import org.aspectj.lang.ProceedingJoinPoint;
 
//自定义通知类
public class MyAdvice
{
    public  void beforelog()
    {
        System.out.println("这是前置通知的日志!");
    }
     
    public  void afterlog()
    {
        System.out.println("这是后置通知的日志!");
    }
     
    public  void aroundlog(ProceedingJoinPoint point) throws Throwable
    {
        System.out.println("这是环绕前通知的日志!");
        point.proceed();//原来代码的位置
        System.out.println("这是环绕后通知的日志!");
    }
     
    public void throwlog()
    {
        System.out.println("这是抛出异常后通知的日志");
    }
 
}
=================================================================
配置文件:
 
<?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:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
  <!-- 定义1个业务类对象 -->
  <bean id="user" class="com.etc.entity.User">
    <property name="role" value="2"></property>
  </bean>
<!-- 定义1个通知类对象 -->
    <bean id="myadv" class="com.etc.advice.MyAdvice">
    </bean>  
  <aop:config>
   <!-- 配置切点的集合、即切线 -->
     <aop:pointcut expression="execution(* com.etc.entity.User.*(..))" id="mypc"/>
   <!-- 配置切入的方向 ,即切面-->
      <aop:aspect ref="myadv">
         <!-- 前置通知
        <aop:before method="beforelog" pointcut-ref="mypc"/>
        -->
         <!-- 后置通知
         <aop:after method="afterlog" pointcut-ref="mypc"/>
          -->
          <!-- 环绕通知
          <aop:around method="aroundlog" pointcut-ref="mypc"/>
          -->
           <!-- 异常通知
          <aop:after-throwing method="throwlog" pointcut-ref="mypc"/>
            -->
      </aop:aspect>
  </aop:config>
     
</beans>
===============================================
测试类:
package com.etc.test;
 
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
 
import com.etc.entity.IUser;
 
public class Test {
    public static void main(String[] args)
    {
        BeanFactory fac = new ClassPathXmlApplicationContext("applicationContext.xml");    
        IUser u = (IUser) fac.getBean("user");
         
        //执行业务方法
        u.login();
        System.out.println("=====");
         
        try
        {
            u.reg();
        } catch (Exception e)
        {
             
        }
    }
}
======================================================================

  

posted @   ATJAVA  阅读(139)  评论(0编辑  收藏  举报
编辑推荐:
· 智能桌面机器人:用.NET IoT库控制舵机并多方法播放表情
· Linux glibc自带哈希表的用例及性能测试
· 深入理解 Mybatis 分库分表执行原理
· 如何打造一个高并发系统?
· .NET Core GC压缩(compact_phase)底层原理浅谈
阅读排行:
· 手把手教你在本地部署DeepSeek R1,搭建web-ui ,建议收藏!
· 新年开篇:在本地部署DeepSeek大模型实现联网增强的AI应用
· 程序员常用高效实用工具推荐,办公效率提升利器!
· Janus Pro:DeepSeek 开源革新,多模态 AI 的未来
· 【译】WinForms:分析一下(我用 Visual Basic 写的)
点击右上角即可分享
微信分享提示