1.springboot 常用接口
1.1 Aware接口
Spring IOC容器中 Bean是感知不到容器的存在,Aware(意识到的)接口就是帮助Bean感知到IOC容器的存在,即获取当前Bean对应的Spring的一些组件,如当前Bean对应的ApplicationContext等。
1.1.1 ApplicationContextAware 获取ApplicationContext
@Component
public class SpringContextUtil implements ApplicationContextAware {private static ApplicationContext applicationContext;public SpringContextUtil() {}public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {applicationContext = applicationContext;}public static ApplicationContext getApplicationContext() {return applicationContext;}public static <T> T getBean(String name) throws BeansException {return applicationContext.getBean(name);}public static <T> T getBean(Class<?> clz) throws BeansException {return applicationContext.getBean(clz);}
}
1.1.2 EnvironmentAware 环境变量读取和属性对象获取
关于Enviroment作用:
Environment:环境,Profile 和 PropertyResolver 的组合。 Environment 对象的作用是确定哪些配置文件(如果有)当前处于活动状态,以及默认情况下哪些配置文件(如果有)应处于活动状态。 properties 在几乎所有应用程序中都发挥着重要作用,并且有多种来源:属性文件,JVM 系统属性,系统环境变量,JNDI, servlet 上下文参数,ad-hoc 属性对象,映射等。同时它继承 PropertyResolver 接口, 所以与属性相关的 Environment 对象其主要是为用于配置属性源和从中属性源中解析属性。 @Componentpublic class MyEnvironment implements EnvironmentAware {private Environment environment;@Overridepublic void setEnvironment(Environment environment) {this.environment=environment;}}
Aware的其他子接口
ApplicationEventPublisherAware (org.springframework.context):事件发布 用法可参考:ApplicationEventPublisherAware事件发布详解ServletContextAware (org.springframework.web.context): ServletContext ServletConfigAware (org.springframework.web.context): ServletConfig 用法可参考:ServletConfig与ServletContext接口API详解和使用MessageSourceAware (org.springframework.context): 国际化 用法可参考:Spring的国际化资源messageSourceResourceLoaderAware (org.springframework.context):访问底层资源的加载器 用法参考:Spring使用ResourceLoader接口获取资源NotificationPublisherAware (org.springframework.jmx.export.notification):JMX通知 Spring JMX之一:使用JMX管理Spring Bean: https://www.cnblogs.com/duanxz/p/3968308.html Spring JMX之三:通知的处理及监听: https://www.cnblogs.com/duanxz/p/4036619.htmlBeanFactoryAware (org.springframework.beans.factory): 申明BeanFactory Spring BeanFactory体系: https://juejin.cn/post/6844903881890070541EmbeddedValueResolverAware (org.springframework.context): 手动读取配置 使用方式可以参考:Spring中抽象类中使用EmbeddedValueResolverAware和@PostConstruct获取配置文件中的参数值
ImportAware (org.springframework.context.annotation):处理自定义注解 关于ImportAware的作用可以看: Spring的@Import注解与ImportAware接口BootstrapContextAware (org.springframework.jca.context): 资源适配器BootstrapContext,如JAC,CCI springcloud情操陶冶-bootstrapContext(二): springcloud情操陶冶-bootstrapContext(二)-CSDN博客LoadTimeWeaverAware (org.springframework.context.weaving):加载Spring Bean时植入第三方模块,如AspectJ 说说在 Spring AOP 中如何实现类加载期织入(LTW): https://juejin.cn/post/6844903664469950478BeanClassLoaderAware (org.springframework.beans.factory): 加载Spring Bean的类加载器 深入理解Java类加载器(ClassLoader): 深入理解Java类加载器(ClassLoader)_java classloader-CSDN博客BeanNameAware (org.springframework.beans.factory): 申明Spring Bean的名字ApplicationContextAware (org.springframework.context):申明ApplicationContext
1.2 ApplicationEvent ApplicationListener 自定义事件,及监听
如果容器中存在ApplicationListener的Bean,当ApplicationContext调用publishEvent方法时,对应的Bean会被触发。
spring内置事件
内置事件 | 描述 |
ContextRefreshedEvent | ApplicationContext 被初始化或刷新时,该事件被触发。这也可以在 ConfigurableApplicationContext接口中使用 refresh() 方法来发生。此处的初始化是指:所有的Bean被成功装载,后处理Bean被检测并激活,所有Singleton Bean 被预实例化,ApplicationContext容器已就绪可用 |
ContextStartedEvent | 当使用 ConfigurableApplicationContext (ApplicationContext子接口)接口中的 start() 方法启动 ApplicationContext 时,该事件被发布。你可以调查你的数据库,或者你可以在接受到这个事件后重启任何停止的应用程序。 |
ContextStoppedEvent | 当使用 ConfigurableApplicationContext 接口中的 stop() 停止 ApplicationContext 时,发布这个事件。你可以在接受到这个事件后做必要的清理的工作。 |
ContextClosedEvent | 当使用 ConfigurableApplicationContext 接口中的 close() 方法关闭 ApplicationContext 时,该事件被发布。一个已关闭的上下文到达生命周期末端;它不能被刷新或重启。 |
RequestHandledEvent | 这是一个 web-specific 事件,告诉所有 bean HTTP 请求已经被服务。只能应用于使用DispatcherServlet的Web应用。在使用Spring作为前端的MVC控制器时,当Spring处理用户请求结束后,系统会自动触发该事件。 |
同样事件可以自定义、监听也可以自定义
@Component public class BrianListener implements ApplicationListener<ContextRefreshedEvent> {@Overridepublic void onApplicationEvent(ContextRefreshedEvent event) {System.out.println("容器 init Bean数量:" + event.getApplicationContext().getBeanDefinitionCount());}}
1.3 InitializingBean接口
InitializingBean 为bean提供了初始化方法的方式,它只包括afterPropertiesSet方法,凡是实现该接口的类,在初始化bean的时候会执行该方法。效果等同于bean的init-method属性的使用或者@PostContsuct注解的使用。
三种方式的执行顺序:@PostContsuct -> 执行InitializingBean接口中定义的方法 -> 执行init-method属性指定的方法。
@Component public class TestInitializingBean implements InitializingBean{@Overridepublic void afterPropertiesSet() throws Exception {//bean 初始化后执行} }
1.4 BeanPostProcessor接口
实现BeanPostProcessor接口的类即为Bean后置处理器,Spring加载机制会在所有Bean初始化的时候遍历调用每个Bean后置处理器。BeanPostProcessor 为每个bean实例化时提供个性化的修改,做些包装等。
其顺序为:Bean实例化 -> 依赖注入 -> Bean后置处理器 (postProcessBeforeInitialization) -> @PostConstruct -> InitializingBean实现类 -> 执行init-method属性指定的方法 -> Bean后置处理器 (postProcessAfterInitialization)
public class MyBeanPostProcessor implements BeanPostProcessor {/*** 在bean实例化之前回调*/public Object postProcessBeforeInitialization(Object bean, String beanName)throws BeansException {System.out.println("postProcessBeforeInitialization: " + beanName);return bean;}/*** 在bean实例化之后回调*/public Object postProcessAfterInitialization(Object bean, String beanName)throws BeansException {System.out.println("postProcessAfterInitialization: " + beanName);return bean;} }
用法可以参考:SpringBoot之自定义注解(基于BeanPostProcessor接口实现) SpringBoot利用注解方式接口权限过滤
1.5 BeanFactoryPostProcessor接口
bean工厂的bean属性处理容器,说通俗一些就是可以管理我们的bean工厂内所有的beandefinition(未实例化)数据,可以随心所欲的修改属
@Component @Slf4j
public class BrianBeanFactoryPostProcessor implements BeanFactoryPostProcessor { public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { BeanDefinition bd = beanFactory.getBeanDefinition("brianBean"); MutablePropertyValues pv = bd.getPropertyValues(); if (pv.contains("kawa")) { pv.addPropertyValue("kawa", "修改属性kawa的值"); } }}
用法可以参考:Spring拓展接口之BeanFactoryPostProcessor,占位符与敏感信息解密原理 Spring的BeanFactoryPostProcessor和BeanPostProcessor
1.6 CommandLineRunner 和 ApplicationRunner接口
CommandLineRunner 及 ApplicationRunner 都可实现在项目启动后执行操作别ApplicationRunner会封装命令行参数,可以很方便地获取到命令行参数和参数值
@Component @Slf4j @Order(value = 2) public class InitServiceConfiguration implements CommandLineRunner {@Autowiredprivate ApplicationContext applicationContext;@Overridepublic void run(String... args) throws Exception {Map<String, AbstractInitService> serviceMap = applicationContext.getBeansOfType(AbstractInitService.class);if (serviceMap == null) {return;}ExecutorService fixedThreadPool = Executors.newFixedThreadPool(3);for (Map.Entry<String, AbstractInitService> entry : serviceMap.entrySet()) {log.info("初始化:{}", entry.getKey());fixedThreadPool.execute(entry.getValue());}fixedThreadPool.shutdown();} }
用法可参考:SpringBoot中CommandLineRunner和ApplicationRunner接口解析和使用
另外这个也可以看一下,spring 比较常用且很好用的接口: spring 比较常用且很好用的接口_springm 可继承或者可实现的接口-CSDN博客
2.springBoot 常用工具类
此处的汇总也包含spring常用的工具类
2.1 字符串工具类 org.springframework.util.StringUtils
首字母大写: public static String capitalize(String str)首字母小写:public static String uncapitalize(String str)判断字符串是否为null或empty: public static boolean hasLength(String str)判断字符串是否为非空白字符串(即至少包含一个非空格的字符串):public static boolean hasText(String str)获取文件名:public static String getFilename(String path) 如e.g. "mypath/myfile.txt" -> "myfile.txt"获取文件扩展名:public static String getFilenameExtension(String path) 如"mypath/myfile.txt" -> "txt"还有譬如数组转集合、集合转数组、路径处理、字符串分离成数组、数组或集合合并为字符串、数组合并、向数组添加元素等。
2.2 对象序列化工具类 org.springframework.util.SerializationUtils
public static byte[] serialize(Object object)public static Object deserialize(byte[] bytes)
2.3 数字处理工具类 org.springframework.util.NumberUtils
字符串转换为Number并格式化,包括具体的Number实现类,如Long、Integer、Double,字符串支持16进制字符串,并且会自动去除字符串中的空格: public static <T extends Number> T parseNumber(String text, Class<T> targetClass) public static <T extends Number> T parseNumber(String text, Class<T> targetClass, NumberFormatnumberFormat)各种Number中的转换,如Long专为Integer,自动处理数字溢出(抛出异常):public static <T extends Number> T convertNumberToTargetClass(Number number, Class<T> targetClass)
2.4 文件复制工具类 org.springframework.util.FileCopyUtils
流与流之间、流到字符串、字节数组到流等的复制
2.5 目录复制工具类 org.springframework.util.FileSystemUtils
递归复制、删除一个目录
2.6 MD5加密 工具类org.springframework.util.DigestUtils
字节数组的MD5加密 public static String md5DigestAsHex(byte[] bytes)
2.7 ResourceUtils
org.springframework.util.xml.ResourceUtils 用于处理表达资源字符串前缀描述资源的工具. 如: "classpath:".有 getURL, getFile, isFileURL, isJarURL, extractJarFileURL
2.8 org.springframework.core.annotation.AnnotationUtils 处理注解
Spring:AnnotationUtils工具类与注解参数说明: Spring:AnnotationUtils工具类与注解参数说明_annotationutils 获取注解的值-CSDN博客
2.9 org.springframework.core.io.support.PropertiesLoaderUtils 加载Properties资源工具类,和Resource结合
Spring工具类之PropertiesLoaderUtils: https://juejin.cn/post/6844904049913888776
2.10 org.springframework.boot.context.properties.bind.Binder
Springboot 2.x新引入的类,负责处理对象与多个ConfigurationPropertySource(属性)之间的绑定。比Environment类好用很多,可以非常方便地进行类型转换,以及提供回调方法介入绑定的各个阶段进行深度定制Spring Boot中的属性绑定的实现 https://segmentfault.com/a/1190000018793404
2.11 org.springframework.core.NestedExceptionUtils
NestedExceptionUtils.getMostSpecificCause(e); NestedExceptionUtils.getRootCause(e);
2.12 xml工具类
org.springframework.util.xml.AbstractStaxContentHandlerorg.springframework.util.xml.AbstractStaxXMLReaderorg.springframework.util.xml.AbstractXMLReaderorg.springframework.util.xml.AbstractXMLStreamReaderorg.springframework.util.xml.DomUtilsorg.springframework.util.xml.StaxUtilsorg.springframework.util.xml.TransformerUtils
2.13 web工具类
org.springframework.web.util.CookieGeneratororg.springframework.web.util.HtmlCharacterEntityDecoderorg.springframework.web.util.HtmlCharacterEntityReferencesorg.springframework.web.util.HtmlUtils org.springframework.web.util.JavaScriptUtils [Java工具类]spring常用工具类 2.特殊字符转义和方法入参检测工具类: [Java工具类]spring常用工具类 2.特殊字符转义和方法入参检测工具类_java 判断是否需要转义字符工具类-CSDN博客
org.springframework.web.util.HttpUrlTemplate 这个类用于用字符串模板构建url, 它会自动处理url里的汉字及其它相关的编码. 在读取别人提供的url资源时, 应该经常用org.springframework.web.util.Log4jConfigListener 用listener的方式来配制log4j在web环境下的初始化org.springframework.web.util.UriTemplateorg.springframework.web.util.UriUtils 处理uri里特殊字符的编码org.springframework.web.util.WebUtils org.springframework.web.bind.ServletRequestUtils 介绍Spring WebUtils 和 ServletRequestUtils: 介绍Spring WebUtils 和 ServletRequestUtils_springutils request-CSDN博客
2.14 其它工具集
org.springframework.util.AntPathMatcher ant风格的处理(uri路径匹配使用较多) org.springframework.util.AntPathStringMatcher 详情参考:Spring源码之AntPathMatcher(二):内部类AntPathStringMatcher-CSDN博客org.springframework.util.Assert 断言工具类(经常用到) 详情参考:Spring Assert(方法入参检测工具类-断言) - 简书org.springframework.util.ClassUtils Class的处理(isPresnt()方法经常用到) 详情参考:Spring中的各种Utils(四):ClassUtils详解-CSDN博客org.springframework.util.CollectionUtils 集合的工具(不用多介绍了)org.springframework.util.CommonsLogWriter (不常用到) 用例参考:Example usage for org.springframework.util CommonsLogWriter CommonsLogWriterorg.springframework.util.CompositeIterator (复合的Iterator) 用法根简单,看下源码就知道它的用法org.springframework.util.ConcurrencyThrottleSupport (控制线程数量) 详情参考:https://www.cnblogs.com/duanxz/p/9435873.htmlorg.springframework.util.CustomizableThreadCreator (自定义Thread组)org.springframework.util.LinkedCaseInsensitiveMap key值不区分大小写的LinkedMap org.springframework.util.LinkedMultiValueMap 一个key可以存放多个值的LinkedMaporg.springframework.util.Log4jConfigurer 一个log4j的启动加载指定配制文件的工具类org.springframework.util.ObjectUtils 有很多处理null object的方法. 如nullSafeHashCode, nullSafeEquals, isArray, containsElement, addObjectToArray, 等有用的方法org.springframework.util.PatternMatchUtils spring里用于处理简单的匹配. 如 Spring's typical "xxx", "xxx" and "xxx" pattern stylesorg.springframework.util.PropertyPlaceholderHelper 用于处理占位符的替换org.springframework.util.ReflectionUtils 反映常用工具方法. 有 findField, setField, getField, findMethod, invokeMethod等有用的方法org.springframework.util.StopWatch 一个很好的用于记录执行时间的工具类, 且可以用于任务分阶段的测试时间. 最后支持一个很好看的打印格式. 这个类应该经常用org.springframework.util.SystemPropertyUtilsorg.springframework.util.TypeUtils 用于类型相容的判断. isAssignableorg.springframework.util.WeakReferenceMonitor 弱引用的监控java.util.Properties 加载文件资源 详细参考:java.util.Properties类学习-CSDN博客
spring好用的的工具类集中在org.springframework.util这个包下,没事可以多翻一翻,下面也是别人总结的工具类可以看一看
spring 常用工具类: https://www.pdai.tech/md/develop/package/dev-package-x-spring-util.html
3.springBoot 常用注解
3.1 spirngboot常用注解
@Component可配合CommandLineRunner使用,在程序启动后执行一些基础任务。@JsonBackReference解决嵌套外链问题。 解决Json 无线递归问题注解@JsonBackReference该注解 加在GET SET方法头上: 解决Json 无线递归问题注解@JsonBackReference该注解 加在GET SET方法头上_@jsonbackreference 不起作用-CSDN博客@RepositoryRestResourcepublic配合spring-boot-starter-data-rest使用。@EnableAutoConfiguration:Spring Boot自动配置(auto-configuration):尝试根据你添加的jar依赖自动配置你的Spring应用。 例如,如果你的classpath下存在HSQLDB,并且你没有手动配置任何数据库连接beans,那么我们将自动配置一个内存型(in-memory)数据库, 你可以将@EnableAutoConfiguration或者@SpringBootApplication注解添加到一个@Configuration类上来选择自动配置。 如果发现应用了你不想要的特定自动配置类,你可以使用@EnableAutoConfiguration注解的排除属性来禁用它们。@ComponentScan:表示将该类自动发现扫描组件。个人理解相当于,如果扫描到有@Component、@Controller、@Service等这些注解的类, 并注册为Bean,可以自动收集所有的Spring组件,包括@Configuration类。我们经常使用@ComponentScan注解搜索beans,并结合@Autowired注解导入。 可以自动收集所有的Spring组件,包括@Configuration类。我们经常使用@ComponentScan注解搜索beans,并结合@Autowired注解导入。 如果没有配置的话,Spring Boot会扫描启动类所在包下以及子包下的使用了@Service,@Repository等注解的类。@Import:用来导入其他配置类。@ImportResource:用来加载xml配置文件。@Inject:等价于默认的@Autowired,只是没有required属性;@Qualifier:当有多个同一类型的Bean时,可以用@Qualifier(“name”)来指定。与@Autowired配合使用。@Qualifier限定描述符除了能根据名字进行注入,但能进行更细粒度的控制如何选择候选者,具体使用方式如下:@Autowired @Qualifier(value = “demoInfoService”) private DemoInfoService demoInfoService; @Resource(name=”name”,type=”type”):没有括号内内容的话,默认byName。与@Autowired干类似的事。
3.2 JPA注解
@Entity:@Table(name=”“):表明这是一个实体类。一般用于jpa这两个注解一般一块使用,但是如果表名和实体类名相同的话,@Table可以省略@MappedSuperClass:用在确定是父类的entity上。父类的属性子类可以继承。@NoRepositoryBean:一般用作父类的repository,有这个注解,spring不会去实例化该repository。@Column:如果字段名与列名相同,则可以省略。@Id:表示该属性为主键。@GeneratedValue(strategy = GenerationType.SEQUENCE,generator = “repair_seq”): 表示主键生成策略是sequence(可以为Auto、IDENTITY、native等,Auto表示可在多个数据库间切换),指定sequence的名字是repair_seq。@SequenceGeneretor(name = “repair_seq”, sequenceName = “seq_repair”, allocationSize = 1): name为sequence的名称,以便使用,sequenceName为数据库的sequence名称,两个名称可以一致。@Transient:表示该属性并非一个到数据库表的字段的映射,ORM框架将忽略该属性。如果一个属性并非数据库表的字段映射, 就务必将其标示为@Transient,否则,ORM框架默认其注解为@Basic。@Basic(fetch=FetchType.LAZY):标记可以指定实体属性的加载方式@JsonIgnore:作用是json序列化时将Java bean中的一些属性忽略掉,序列化和反序列化都受影响。@JoinColumn(name=”loginId”):一对一:本表中指向另一个表的外键。一对多:另一个表指向本表的外键。@OneToOne、@OneToMany、@ManyToOne:对应hibernate配置文件中的一对一,一对多,多对一。
3.3 springMVC相关注解
@RequestMapping:@RequestMapping(“/path”)表示该控制器处理所有“/path”的UR L请求。RequestMapping是一个用来处理请求地址映射的注解,可用于类或方法上。 用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径。该注解有六个属性: params:指定request中必须包含某些参数值是,才让该方法处理。 headers:指定request中必须包含某些指定的header值,才能让该方法处理请求。 value:指定请求的实际地址,指定的地址可以是URI Template 模式 method:指定请求的method类型, GET、POST、PUT、DELETE等 consumes:指定处理请求的提交内容类型(Content-Type),如application/json,text/html; produces:指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回
3.4 异常处理注解
@ControllerAdvice:包含@Component。可以被扫描到。统一处理异常。 @ExceptionHandler(Exception.class):用在方法上面表示遇到这个异常就执行以下方法。 用法可参考: @ControllerAdvice + @ExceptionHandler 全局处理 Controller 层异常_controlleradice-CSDN博客
常用的注解没有很复杂的内容和用法,下面是别人总结的常用注解,可以看一看
springboot 常用注解 SpringBoot常用注解 · 语雀
Springboot 版本+ jdk 版本 + Maven 版本的对应关系
SpringCloud与SpringBoot 版本
官网说明:Spring Cloud
SpringBoot 与 JDK版本关系
发布说明:Spring Boot 3.0 Release Notes · spring-projects/spring-boot Wiki · GitHub
SpringBoot 3.x不再支持JDK1.8.
SpringBoot 3.x 以下都是支持JDK1.8的。
版本选择
如果使用JDK1.8, 那么SpringCloud可以选择2021.0.x,SpringBoot选择兼容的版本。
如果使用JDK17, 可以选择SpringCloud最新版。
Spring boot 版本 | Spring Framework | jdk 版本 | maven 版本 |
---|---|---|---|
1.2.0 版本之前 | 6 | 3.0 | |
1.2.0 | 4.1.3+ | 6 | 3.2+ |
1.2.1 | 4.1.3+ | 7 | 3.2+ |
1.2.3 | 4.1.5+ | 7 | 3.2+ |
1.3.4 | 4.2.6+ | 7 | 3.2+ |
1.3.6 | 4.2.7+ | 7 | 3.2+ |
1.3.7 | 4.2.7+ | 7 | 3.2+ |
1.3.8 | 4.2.8+ | 7 | 3.2+ |
1.4.0 | 4.3.2+ | 7 | 3.2+ |
1.4.1 | 4.3.3 | 7 | 3.2+ |
1.4.2 | 4.3.4 | 7 | 3.2+ |
1.4.3 | 4.3.5 | 7 | 3.2+ |
1.4.4 | 4.3.6 | 7 | 3.2+ |
1.4.5 | 4.3.7 | 7 | 3.2+ |
1.4.6 | 4.3.8 | 7 | 3.2+ |
1.4.7 | 4.3.9 | 7 | 3.2+ |
1.5.0 | 4.3.6 | 7 | 3.2+ |
1.5.2 | 4.3.7 | 7 | 3.2+ |
1.5.3 | 4.3.8 | 7 | 3.2+ |
1.5.4 | 4.3.9 | 7 | 3.2+ |
1.5.5 | 4.3.10 | 7 | 3.2+ |
1.5.7 | 4.3.11 | 7 | 3.2+ |
1.5.8 | 4.3.12 | 7 | 3.2+ |
1.5.9 | 4.3.13 | 7 | 3.2+ |
2.0.0 | 5.0.2 | 8 | 3.2+ |