-
Notifications
You must be signed in to change notification settings - Fork 37
/
148-java-2.html
182 lines (169 loc) · 8.39 KB
/
148-java-2.html
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>葡萄藤PPT</title>
<link rel="stylesheet" href="./css/reveal/reveal.css">
<!-- PPT主题,可以在/css/reveal/theme/中选择其他主题,目前暂时只能使用该模板 -->
<link rel="stylesheet" href="./css/reveal/theme/ptt.css">
<!-- syntax highlighting 代码高亮主题 -->
<link rel="stylesheet" href="./lib/reveal/css/zenburn.css">
<!-- 打印和PDF输出样式 -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? './css/reveal/print/pdf.css' : '../css/reveal/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<img src="./img/demo/logo.png" alt="" usemap="#pttmap" class="base-logo">
<map name="pttmap">
<area shape="rect" coords="0,0,276,58" href="http://www.jnshu.com" alt="" target="_blank"/>
</map>
<div class="reveal">
<div class="slides">
<section>
<h3>Spring AOP</h3>
<p></P>
<h4>Java小课堂</h4>
<p>分享人:张庆东</p>
</section>
<section>
<p>1.背景介绍</p>
<p>2.知识剖析</p>
<p>3.常见问题</p>
<p>4.解决方案</p>
<p>5.编码实战</p>
<p>6.扩展思考</p>
<p>7.参考文献</p>
<p>8.更多讨论</p>
</section>
<section>
<h3>1.背景介绍</h3>
</section>
<section>
<p style="text-align:left">AOP,即面向切面编程。是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。</p>
</section>
</section>
<section>
<h3>2.知识剖析</h3>
</section>
<section>
<p style="text-align:left">今天小课堂简单的介绍一下如何使用JDK动态代理实现切面编程。然后详细的介绍一下使用注解方法来实现面向切面编程</p>
</section>
<section>
<p style="text-align:left">SpringAOP分为三个部分,切面类,目标类,Spring配置</p>
</section>
<section>
<h5>AOP常用的切面方法</h5>
<p style="text-align:left">1.Before 前置增强,在目标方法执行前实施增强</p>
<p style="text-align:left">2.Around 环绕增强,在目标方法执行前后实施增强</p>
<p style="text-align:left">3.AfterReturning 后置增强,在目标方法执行后实施增强</p>
<p style="text-align:left">4.AfterThrowing 抛出异常增强,处理抛出的异常</p>
</section>
<section>
<h5>代理实现</h5>
<p style="text-align:left">在截断目标类的运行,生成目标类的子类,在这个子类中加入诸如Before或Around等方法</p>
</section>
<section>
<p style="text-align:center">JDK代理</p>
<p style="text-align:left">只能代理接口,动态代理性能差,但创建动态代理的速度快</p>
<p style="text-align:center">CGLib代理</p>
<p style="text-align:left">能代理接口和类,与上面相反,动态代理性能好,但创建动态代理的速度慢</p><br>
<p style="text-align:left">结论:若代理对象启用单例模式(无论new或get多少次,容器中都只有一个对象,即singleton)则适用于CGLib动态代理,相反,则适用于JDK动态代理</p>
</section>
<section>
<h3>注解实现</h3>
<p style="text-align:center">三个步骤</p><br>
</section>
<section>
<p style="text-align:left">1.将切面类和目标类诸如IOC容器,由Spring进行管理</p>
<p style="text-align:left">2.在Spring配置文件中加入基于@Aspectj的切面驱动,即aop:aspectj-autoproxy</p>
<p style="text-align:left">3.编写切面类的增强逻辑,以及其匹配逻辑</p>
</section>
<section>
<h3>3.常见问题</h3>
</section>
<section>
<p style="text-align:center">1.SpringAOP有什么用?</p><br>
<p style="text-align:center">2.怎么开启JDK代理或CGLib代理?</p><br>
</section>
<section>
<h3>4.解决方案</h3>
</section>
<section>
<p style="text-align:center">1.SpringAOP有什么用?</p><br>
</section>
<section>
<p style="text-align:left">我们任务中有用到的:性能统计。在复盘项目中可以用到的:日志打印、异常抛出处理。除此之外还可以做到权限管理、事务处理、安全控制等</p><br>
</section>
<section>
<p style="text-align:center">2.怎么开启JDK代理或CGLib代理?</p><br>
</section>
<section>
<p style="text-align:left">在Spring配置文件的切面驱动中加入proxy-target-class="true"字段,"true"表示开启CGLib代理,"false"表示开启JDK代理,若不加入这一字段,则默认启用JDK代理</p><br>
</section>
<section>
<h3>5.编码实战</h3>
</section>
<section>
<h3>6.扩展思考</h3>
</section>
<!-- <section>
<p style="text-align:left">Spring容器独立于配置元数据格式,二者之间是解耦的,因此,改变配置方式对 Spring 的框架自身是透明的。</p>
<p style="text-align:left">对于一个使用Spring开发的典型WEB应用程序而言,将配置元数据划分到不同文件,可以清晰反映出应用程序的层,
不但便于管理,又可以同时由不同人员开发。</p>
</section>
<section>
<p style="text-align:left">beans-web.xml或者ConfigurationForWeb 类定义WEB层/表现层中所操作的Bean;</p>
<p style="text-align:left">beans-service.xml或者ConfigurationForService类定义服务层/业务层中所操作的Bean;</p>
<p style="text-align:left">beans-dao.xml或者ConfigurationForDao类定义数据访问层中所操作的Bean。</p>
</section> -->
<section>
<h3>7.参考文献</h3>
<p style="text-align:center">《精通Spring 4.x企业应用开发实战》</p>
</section>
<section>
<h3>8.更多讨论</h3>
<p>今天的分享就到这里啦,欢迎大家提问和探讨!</p>
</section>
</div>
</div>
<script src="./lib/reveal/js/head.min.js"></script>
<script src="./lib/reveal/reveal.js"></script>
<script>
// 以下为常见配置属性的默认值
// {
// controls: true, // 是否在右下角展示控制条
// progress: true, // 是否显示演示的进度条
// slideNumber: false, // 是否显示当前幻灯片的页数编号,也可以使用代码slideNumber: 'c / t' ,表示当前页/总页数。
// history: false, // 是否将每个幻灯片改变加入到浏览器的历史记录中去
// keyboard: true, // 是否启用键盘快捷键来导航
// overview: true, // 是否启用幻灯片的概览模式,可使用"Esc"或"o"键来切换概览模式
// center: true, // 是否将幻灯片垂直居中
// touch: true, // 是否在触屏设备上启用触摸滑动切换
// loop: false, // 是否循环演示
// rtl: false, // 是否将演示的方向变成RTL,即从右往左
// fragments: true, // 全局开启和关闭碎片。
// autoSlide: 0, // 两个幻灯片之间自动切换的时间间隔(毫秒),当设置成 0 的时候则禁止自动切换,该值可以被幻灯片上的 ` data-autoslide` 属性覆盖
// transition: 'default', // 切换过渡效果,有none/fade/slide/convex/concave/zoom
// transitionSpeed: 'default', // 过渡速度,default/fast/slow
// mouseWheel: true, //是否启用通过鼠标滚轮来切换幻灯片
// }
// 初始化幻灯片
Reveal.initialize({
history: true,
dependencies: [
{ src: './plugin/markdown/marked.js' },
{ src: './plugin/markdown/markdown.js' },
{ src: './plugin/notes/notes.js', async: true },
{ src: './plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>