Spring工具类-AnnotationUtils的使用
简介
本文介绍Spring的AnnotationUtils工具类的用法。
AnnotatedElementUtils与AnnotationUtils的区别见:这里
用法
注解类
package com.example.annotation;
import org....
Spring工具类-AnnotatedElementUtils的使用
简介
本文介绍Spring的AnnotatedElementUtils工具类的使用。
AnnotatedElementUtils与AnnotationUtils的区别
AnnotatedElementUtils比AnnotationUtils更强大
特性AnnotatedElem...
Spring之AOP-控制AOP的执行顺序
简介
本文用示例介绍Spring(SpringBoot)的AOP的执行顺序。
公共代码
Service
package com.example.demo.service;
import com.example.demo.entity.User;
public interface ...
Spring之AOP-指示器
简介
说明
本文介绍Spring(SpringBoot)的AOP的指示器的使用。
这些指示器可以用在@Around,@Before等括号内,指定切点。
官网
10.2. @AspectJ support - Spring 中文文档
...
Tomcat-安装与使用
简介
本文介绍Tomcat的安装和使用。
下载及配置
下载
官网下载地址
配置
配置文件:conf/server.xml
配置项含义默认值<Connector port="8080" protocol="HTTP/1.1...
Spring定时任务-@Scheduled注解-使用/教程/实例
简介
说明
本文用示例介绍SpringBoot的@Scheduled注解的用法。
执行时间的配置
在方法上使用@Scheduled注解来设置任务的执行时间,并且使用三种属性配置方式:
项fixedRatef...
Spring-BeanPostProcessor-使用/实例
简介
说明
本文用实例介绍Spring的BeanPostProcessor的应用。
所有的Bean都会走到BeanPostProcessor接口的postProcessBeforeInitialization和postProcessAfterInitialization方法...
Spring-BeanPostProcessor无法使用AOP-原因/解决方案
简介
本文介绍BeanPostProcessor为什么无法使用AOP以及其解决方案。
原因
简述
BeanPostProcessor以及依赖的bean很有可能无法使用AOP。
此时,会有类似这样的打印信息:trat...
Spring-BeanPostProcessor-注意问题/坑
简介
本文用实例来介绍Spring的后置处理器(BeanPostProcessor)的一些坑,开发时要注意这些问题。
坑1:依赖的bean不走BeanPostProcessor
简介
在BeanPostProcessor的实现类中...
Spring-BeanPostProcessor-作用/介绍
简介
说明
本文介绍Spring中BeanPostProcessor的作用
所有的Bean都会走到BeanPostProcessor接口的postProcessBeforeInitialization和postProcessAfterInitialization方法。
Spr...