- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring基于XML实现Aop由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
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
|
<
dependencies
>
<
dependency
>
<
groupId
>org.projectlombok</
groupId
>
<
artifactId
>lombok</
artifactId
>
<
version
>1.18.18</
version
>
</
dependency
>
<
dependency
>
<
groupId
>junit</
groupId
>
<
artifactId
>junit</
artifactId
>
<
version
>4.12</
version
>
<
scope
>test</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-context</
artifactId
>
<
version
>5.3.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-beans</
artifactId
>
<
version
>5.3.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-core</
artifactId
>
<
version
>5.3.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-expression</
artifactId
>
<
version
>5.3.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-aop</
artifactId
>
<
version
>5.3.4</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.aspectj</
groupId
>
<
artifactId
>aspectjweaver</
artifactId
>
<
version
>1.9.6</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.aspectj</
groupId
>
<
artifactId
>aspectjrt</
artifactId
>
<
version
>1.9.6</
version
>
</
dependency
>
</
dependencies
>
|
1
2
3
4
5
6
7
8
9
10
11
|
/**
* @version 1.0
* @author: crush
* @date: 2021-03-05 10:26
*/
public
interface
TestDao {
public
void
sayHello();
public
void
save();
public
void
modify();
public
void
delete();
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @version 1.0
* @author: crush
* @date: 2021-03-05 10:27
*/
public
class
TestDaoImpl
implements
TestDao {
public
void
sayHello() {
System.out.println(
"正在执行的方法-->武汉加油!中国加油!"
);
}
public
void
save() {
System.out.println(
"正在执行的方法-->保存"
);
}
public
void
modify() {
System.out.println(
"正在执行的方法-->修改"
);
}
public
void
delete() {
System.out.println(
"正在执行的方法-->删除"
);
}
}
|
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
|
/**
* @version 1.0
* @author: crush
* @date: 2021-03-10 17:12
*/
public
class
MyAspectXml {
/**
* 前置通知 使用JoinPoint 接口作为参数获得目标对象的信息
**/
public
void
before(JoinPoint jp){
System.out.print(
"前置通知:模拟权限控制 "
);
System.out.println(
"目标对象:"
+jp.getTarget()+
",被增强的方法:"
+jp.getSignature().getName());
}
public
void
afterReturning(JoinPoint jp){
System.out.print(
"后置返回通知:"
+
"模拟删除临时文件"
);
System.out.println(
",被增强的方法"
+jp.getSignature().getName());
}
public
Object around(ProceedingJoinPoint pjp)
throws
Throwable {
System.out.println(
"环绕开始:执行目标方法前,模拟开启事务"
);
Object obj = pjp.proceed();
System.out.println(
"环绕结束:执行目标方法后,模拟关闭事务"
);
return
obj;
}
public
void
except(Throwable throwable){
System.out.println(
"异常通知:"
+
"程序执行异常"
+throwable.getMessage());
}
public
void
after(){
System.out.println(
"最终通知:释放资源"
);
}
}```
###
4
、application.xml文件
```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
http:
//www.springframework.org/schema/beans/spring-beans.xsd
http:
//www.springframework.org/schema/aop
https:
//www.springframework.org/schema/aop/spring-aop.xsd
http:
//www.springframework.org/schema/context
https:
//www.springframework.org/schema/context/spring-context.xsd">
<!--
<aop:aspectj-autoproxy />
声明自动为spring容器中那些配置
@aspectJ
切面的bean创建代理,织入切面。
proxy-target-
class
属性,默认为
false
,表示使用jdk动态代理织入增强,
为
true
时: 表示使用CGLib动态代理技术织入增强。
-->
<aop:aspectj-autoproxy proxy-target-
class
=
"true"
/>
<bean id=
"testDaoImpl"
class
=
"com.dao.TestDaoImpl"
/>
<bean id=
"myAspectXML"
class
=
"com.aspect.MyAspectXml"
/>
<!-- <bean id=
"myAspectXML2"
class
=
"com.aspect.MyAspectXml2"
/>-->
<!--
补充:<aop:pointcut>如果位于<aop:aspect>元素中,则命名切点只能被当前<aop:aspect>内定义的元素访问到,
为了能被整个<aop:config>元素中定义的所有增强访问,则必须在<aop:config>下定义切点。
-->
<aop:config>
<!--切入点 execution 表达式 通过这个表达式筛选连接点 -->
<aop:pointcut id=
"myPointCut"
expression=
"execution(* com.dao.*.*(..))"
/>
<aop:aspect ref=
"myAspectXML"
>
<!--aop:after 是表示 这个方法是那种通知类型after 是方法之后
method=
"after"
这个after是切面类中的方法 -->
<aop:after method=
"after"
pointcut-ref=
"myPointCut"
/>
<aop:before method=
"before"
pointcut-ref=
"myPointCut"
/>
<aop:after-returning method=
"afterReturning"
pointcut-ref=
"myPointCut"
/>
<aop:after-throwing method=
"except"
throwing=
"throwable"
pointcut-ref=
"myPointCut"
/>
<aop:around method=
"around"
pointcut-ref=
"myPointCut"
/>
</aop:aspect>
</aop:config>
</beans>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@Test
public
void
Test(){
ApplicationContext applicationContext =
new
ClassPathXmlApplicationContext(
"applicationContext.xml"
);
TestDao testDao = applicationContext.getBean(
"testDaoImpl"
, TestDaoImpl.
class
);
testDao.save();
/**
* 输出:
* 前置通知:模拟权限控制 目标对象:com.dao.TestDaoImpl@704f1591,被增强的方法:save
* 环绕开始:执行目标方法前,模拟开启事务
* 正在执行的方法-->保存
* 环绕结束:执行目标方法后,模拟关闭事务
* 后置返回通知:模拟删除临时文件,被增强的方法save
* 最终通知:释放资源
*/
}
|
本篇文章就到这里了,希望能给你带来帮助,也希望能够您能够关注我的更多内容! 。
原文链接:https://blog.csdn.net/weixin_45821811/article/details/118054409 。
最后此篇关于Spring基于XML实现Aop的文章就讲到这里了,如果你想了解更多关于Spring基于XML实现Aop的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
正如标题中所问,我有两个如下结构的 XML 文件 A.xml //here I want to include B.xml
我有一个 xml 文件。根据我的要求,我需要更新空标签,例如我需要更改 to .是否可以像那样更改标签.. 谢谢... 最佳答案 var xmlString=" "; var properStri
我有这样简单的 XML: Song Playing 09:41:18 Frederic Delius Violin Son
在我的工作中,我们有自己的 XML 类来构建 DOM,但我不确定应该如何处理连续的空格? 例如 Hello World 当它被读入 DOM 时,文本节点应该包含 Hello 和 World
我有以下 2 个 xml 文件,我必须通过比较 wd:Task_Name_ID 和 TaskID 的 XML 文件 2。 例如,Main XML File-1 wd:Task_Name_ID 具有以下
我在 Rails 应用程序中有一个 XML View ,需要从另一个文件插入 XML 以进行测试。 我想说“构建器,只需盲目地填充这个字符串,因为它已经是 xml”,但我在文档中看不到这样做的任何内容
我正在重建一些 XML 提要,因此我正在研究何时使用元素以及何时使用带有 XML 的属性。 一些网站说“数据在元素中,元数据在属性中。” 那么,两者有什么区别呢? 让我们以 W3Schools 为例:
在同一个文档中有两个 XML 声明是否是格式正确的 XML? hello 我相信不是,但是我找不到支持我的消息来源。 来自 Extensible Markup Language
我需要在包装器 XML 文档中嵌入任意(语法上有效的)XML 文档。嵌入式文档被视为纯文本,在解析包装文档时不需要可解析。 我知道“CDATA trick”,但如果内部 XML 文档本身包含 CDAT
XML 解析器和 XML 处理器是两个不同的东西吗?他们是两个不同的工作吗? 最佳答案 XML 解析器和 XML 处理器是一样的。它不适用于其他语言。 XML 是通用数据标记语言。解析 XML 文件已
我使用这个 perl 代码从一个文件中读取 XML,然后写入另一个文件(我的完整脚本有添加属性的代码): #!usr/bin/perl -w use strict; use XML::DOM; use
我正在编写一个我了解有限的历史脚本。 对象 A 的类型为 system.xml.xmlelement,我需要将其转换为类型 system.xml.xmldocument 以与对象 B 进行比较(类型
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有一个案例,其中一个 xml 作为输入,另一个 xml 作为输出:我可以选择使用 XSL 和通过 JAXB 进行 Unmarshalling 编码。性能方面,有什么真正的区别吗? 最佳答案 首先,程
我有包含 XML 的 XML,我想使用 JAXB 解析它 qwqweqwezxcasdasd eee 解析器 public static NotificationRequest parse(Strin
xml: mario de2f15d014d40b93578d255e6221fd60 Mario F 23 maria maria
尝试更新 xml 文件数组时出现以下错误。 代码片段: File dir = new File("c:\\XML"); File[] files = dir.listFiles(new Filenam
我怎样才能完成这样的事情: PS /home/nicholas/powershell> PS /home/nicholas/powershell> $date=(Get-Date | ConvertT
我在从 xml 文件中删除节点时遇到一些困难。我发现很多其他人通过各种方式在 powershell 中执行此操作的示例,下面的代码似乎与我见过的许多其他示例相同,但我没有得到所需的行为。 我的目标是将
我是一名优秀的程序员,十分优秀!