forked from IT-xzy/NEW-JAVA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
20190113-D-JAVA-7.html
244 lines (201 loc) · 16.8 KB
/
20190113-D-JAVA-7.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!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="https://ptteng.github.io/PPT/css/reveal/reveal.css">
<!-- PPT主题,可以在/css/reveal/theme/中选择其他主题,目前暂时只能使用该模板 -->
<link rel="stylesheet" href="https://ptteng.github.io/PPT/css/reveal/theme/ptt.css">
<!-- syntax highlighting 代码高亮主题 -->
<link rel="stylesheet" href="https://ptteng.github.io/PPT/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 ) ? 'https://ptteng.github.io/PPT/css/reveal/print/pdf.css' : '../css/reveal/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<img src="https://ptteng.github.io/PPT/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>
<h2>什么是Annotation,怎么自定义Annotation,Annotation和XML的优缺点各是什么 </h2>
<p>分享人:王志雄</p>
</section>
<section>
<p>目录</p>
<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 hidden="" aria-hidden="true" class="future" style="top: 267px; display: block;">
<h3>1.背景介绍</h3>
</section>
<section hidden="" aria-hidden="true" class="stack future" style="top: 330px; display: none;">
<section style="top: 330px; display: none;">
<p style="text-align:left">1.1 注解概念</p>
<p style="text-align:left">Annontation是Java5开始引入的新特征,中文名称叫注解。它提供了一种安全的类似注释的机制,用来将任何的信息或元数据(metadata)与程序元素(类、方法、成员变量等)进行关联。为程序的元素(类、方法、成员变量)加上更直观更明了的说明,这些说明信息是与程序的业务逻辑无关,并且供指定的工具或框架使用。Annontation像一种修饰符一样,应用于包、类型、构造方法、方法、成员变量、参数及本地变量的声明语句中。
</p>
<p style="text-align:left"></p>
</section>
<section class="future" aria-hidden="true" style="top: 330px; display: none;">
<p style="text-align:left">PS:Java注解是附加在代码中的一些元信息,用于一些工具在编译、运行时进行解析和使用,起到说明、配置的功能。注解不会也不能影响代码的实际逻辑,仅仅起到辅助性的作用。包含在 java.lang.annotation 包中。</p>
</section>
<section class="future" aria-hidden="true" style="top: 330px; display: none;">
<p style="text-align:left">1.2 注解的用处</p>
<p style="text-align:left">1、生成文档。这是最常见的,也是java 最早提供的注解。常用的有@param 等
</p>
<p style="text-align:left">2、跟踪代码依赖性,实现替代配置文件功能。</p>
<p style="text-align:left">3、在编译时进行格式检查。如@override 放在方法前,如果你这个方法并不是覆盖了超类方法,则编译时就能检查出。</p>
</section>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>2.知识剖析</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>2.1 常见标准的Annotation:</h3>
<p style="text-align:left">1.)Override</p>
<p style="text-align:left">java.lang.Override是一个标记类型注解,它被用作标注方法。它说明了被标注的方法重写了父类的方法,起到了断言的作用。如果我们使用了这种注解在一个没有覆盖父类方法的方法时,java编译器将以一个编译错误来警示。</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3> 2.)Deprecated</h3>
<p style="text-align:left">Deprecated也是一种标记类型注解。当一个类型或者类型成员使用@Deprecated修饰的话,编译器将不鼓励使用这个被标注的程序元素。所以使用这种修饰具有一定的“延续性”:如果我们在代码中通过继承或者覆盖的方式使用了这个过时的类型或者成员,虽然继承或者覆盖后的类型或者成员并不是被声明为@Deprecated,但编译器仍然要报警。</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3> 3.)SuppressWarnings</h3>
<p style="text-align:left"> SuppressWarning不是一个标记类型注解。它有一个类型为String[]的成员,这个成员的值为被禁止的警告名。对于javac编译器来讲,被-Xlint选项有效的警告名也同样对@SuppressWarings有效,同时编译器忽略掉无法识别的警告名。</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>2.2 元注解 </h3>
<p style="text-align:left">
java.lang.annotation提供了四种元注解,专门注解其他的注解(在自定义注解的时候,需要使用到元注解):
</p>
<p style="text-align:left">
@Documented –注解是否将包含在JavaDoc中
</p>
<p style="text-align:left">
@Retention –什么时候使用该注解
</p>
<p style="text-align:left">
@Target –注解用于什么地方
</p>
<p style="text-align:left">
@Inherited – 是否允许子类继承该注解
</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3> 1.)@Retention– 定义该注解的生命周期</h3>
<p style="text-align:left"> ● RetentionPolicy.SOURCE : 在编译阶段丢弃。这些注解在编译结束之后就不再有任何意义,所以它们不会写入字节码。@Override, @SuppressWarnings都属于这类注解。</p>
<p style="text-align:left"> ● RetentionPolicy.CLASS : 在类加载的时候丢弃。在字节码文件的处理中有用。注解默认使用这种方式</p>
<p style="text-align:left"> ● RetentionPolicy.RUNTIME : 始终不会丢弃,运行期也保留该注解,因此可以使用反射机制读取该注解的信息。我们自定义的注解通常使用这种方式。</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h4> 2.)Target – 表示该注解用于什么地方。默认值为任何元素,表示该注解用于什么地方。可用的ElementType参数包括</h4>
<p style="text-align:left">● ElementType.CONSTRUCTOR:用于描述构造器</p>
<p style="text-align:left"> ● ElementType.FIELD:成员变量、对象、属性(包括enum实例)</p>
<p style="text-align:left"> ● ElementType.LOCAL_VARIABLE:用于描述局部变量</p>
<p style="text-align:left"> ● ElementType.METHOD:用于描述方法</p>
<p style="text-align:left"> ● ElementType.PACKAGE:用于描述包</p>
<p style="text-align:left"> ● ElementType.PARAMETER:用于描述参数</p>
<p style="text-align:left"> ● ElementType.TYPE:用于描述类、接口(包括注解类型) 或enum声明</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<p style="text-align:left"> 3.)@Documented–一个简单的Annotations标记注解,表示是否将注解信息添加在java文档中。</p>
<p style="text-align:left"> 4.)@Inherited – 定义该注释和子类的关系</p>
<p style="text-align:left">@Inherited 元注解是一个标记注解,@Inherited阐述了某个被标注的类型是被继承的。如果一个使用了@Inherited修饰的annotation类型被用于一个class,则这个annotation将被用于该class的子类。</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>3.常见问题</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>自定义注解</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>4.解决方案</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h4> 自定义注解:</h4>
<p style="text-align:left">自定义注解类编写的一些规则:</p>
<p style="text-align:left">1. Annotation型定义为@interface, 所有的Annotation会自动继承java.lang.Annotation这一接口,并且不能再去继承别的类或是接口.</p>
<p style="text-align:left"> 2. 参数成员只能用public或默认(default)这两个访问权修饰</p>
<p style="text-align:left"> 3. 参数成员只能用基本类型byte,short,char,int,long,float,double,boolean八种基本数据类型和String、Enum、Class、annotations等数据类型,以及这一些类型的数组.</p>
<p style="text-align:left">4. 要获取类方法和字段的注解信息,必须通过Java的反射技术来获取 Annotation对象,因为你除此之外没有别的获取注解对象的方法</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>5.编码实战</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>6.扩展思考</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<p>spring注解
传统的Spring做法是使用.xml文件来对bean进行注入或者是配置aop、事物,这么做有两个缺点:
1、如果所有的内容都配置在.xml文件中,那么.xml文件将会十分庞大;如果按需求分开.xml文件,那么.xml文件又会非常多
2、在开发中在.java文件和.xml文件之间不断切换,是一件麻烦的事,同时这种思维上的不连贯也会降低开发的效率。为了解决这两个问题,Spring引入了注解,通过”@XXX”的方式,让注解与Java Bean紧密结合,既大大减少了配置文件的体积,又增加了Java Bean的可读性与内聚性。
</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<p>如何使用再上下文文件中加入如下代码扫描
<context:component-scan base-package="包" />多个包逗号隔开。常用注解1、@Component通用一般不推荐使用 2、@Controller @Controller对应表现层的Bean 3、@ Service @Service对应的是业务层Bean 4、@ Repository
@Repository对应数据访问层Bean @Controller, @Service, @Component, @Repository刨析
其中@Component是一种通用名称,泛指任意可以通过Spring来管理的组件,@Controller, @Service, @Repository则是一种特定的组件,通常用来表示某种特定场合下的组件,比如@Repository用来表示仓库(数据层,DAO),并且Spring 框架会根据这种应用场景做些定制,比如@Repository同时具备了自动化的异常转换。类似的,
@Service则用来表示服务层相关的类, @Controller则用来表示展示层(presentation)的类。
</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>7.参考文献</h3>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<p>https://www.cnblogs.com/acm-bingzi/p/javaAnnotation.html</p>
<p>百度百科</p>
</section>
<section hidden="" aria-hidden="true" class="future" style="top: 330px; display: none;">
<h3>8.更多讨论</h3>
<p>今天的分享就到这里啦,欢迎大家提问和探讨!</p>
</section>
</div>
<div class="backgrounds"><div class="slide-background present" data-loaded="true" style="display: block;"></div><div class="slide-background future" data-loaded="true" style="display: block;"></div><div class="slide-background future" data-loaded="true" style="display: block;"></div><div class="slide-background stack future" style="display: none;"><div class="slide-background present" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div><div class="slide-background future" style="display: none;"></div></div><div class="progress" style="display: block;"><span style="width: 0px;"></span></div><aside class="controls" style="display: block;"><button class="navigate-left" aria-label="previous slide"></button><button class="navigate-right enabled" aria-label="next slide"></button><button class="navigate-up" aria-label="above slide"></button><button class="navigate-down" aria-label="below slide"></button></aside><div class="slide-number" style="display: none;"></div><div class="speaker-notes" data-prevent-swipe=""></div><div class="pause-overlay"></div><div id="aria-status-div" aria-live="polite" aria-atomic="true" style="position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px);">
Annotation注解
分享人:王志雄
</div></div>
<script src="https://ptteng.github.io/PPT/lib/reveal/js/head.min.js "></script>
<script src="https://ptteng.github.io/PPT/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, // 是否在触屏设备上启用触
Reveal.initialize({
history: true,
dependencies: [
{src: 'https://ptteng.github.io/PPT/plugin/markdown/marked.js'},
{src: 'https://ptteng.github.io/PPT/plugin/markdown/markdown.js'},
{src: 'https://ptteng.github.io/PPT/plugin/notes/notes.js', async: true},
{
src: 'https://ptteng.github.io/PPT/plugin/highlight/highlight.js', async: true, callback: function () {
hljs.initHighlightingOnLoad();
}
}
]
});
</script>
</body>
</html>