
Spring
codeRichLife
微服务、IOT、物联网、工业互联网、分布式、项目管理、架构、AI、数字化
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
@RequestParam和@PathVariable
RequestParam: Annotation which indicates that a method parameter should be bound to a web request parameter. PathVariable: Annotation which indicates that a method parameter should be bound to a URI ...原创 2019-09-18 17:06:20 · 149 阅读 · 0 评论 -
Spring面向切面编程术语
重温术语: 通知(Advice):通知定义了切面是什么以及何时使用。可以分为5种类型:前置通知,后置通知,返回通知,异常通知和环绕通知。 连接点(Join point): 连接点是在应用执行过程中能够插入切面的一个点。 切点(Point): 定义了切面何处使用。 切面(Aspect): 切面是通知和切点的结合。 织入(Weaving): 织入是把切面应用到目标对象并创建新的代理对象的过程...原创 2019-09-20 16:10:41 · 208 阅读 · 0 评论