Spring5 新功能
- 整个Spring5框架的代码基于Java8,运行时兼容JDK9,许多不建议使用的类和方法在代码库中删除
Spring5.0框架自带了通用的日志封装
- Spring5已经移除Log4jConfigListener,官方建议使用Log4j2
- Spring5框架整合Log4j2
第一步,引入相关的jar包
第二步,创建log4j2.xml配置文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <?xml version="1.0" encoding="UTF-8"?>
<configuration status="INFO"> <appenders> <console name="Console" target="SYSTEM_OUT"> <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </console> </appenders> <loggers> <root level="info"> <appender-ref ref="Console"/> </root> </loggers> </configuration>
|
## Spring5 框架核心容器支持@Nullable 注解
@Nullable注解可以使用在方法上面,属性上面,参数上面,表示方法返回可以为空,属性值可以为空,参数值可以为空
注解用在方法上面,方法返回值可以为空
1 2
| @Nullable String getId();
|
注解使用在方法参数里面,方法参数可以为空
1 2 3
| public <T> void registerBean(@Nullable String beanName, Class<T> beanClass, @Nullable Supplier<T> supplier, BeanDefinitionCustomizer... customizers) { this.reader.registerBean(beanClass, beanName, supplier, customizers); }
|
注解使用在属性上面,属性可以为空
1 2
| @Nullable private String bookName;
|
Spring5 核心容器函数式风格GenericApplicationContext
1 2 3 4 5 6 7 8 9 10 11 12 13
| @Test public void testGenericApplicationContext(){ GenericApplicationContext context = new GenericApplicationContext(); context.refresh(); context.registerBean("user1",User.class,()-> new User());
Object user1 = context.getBean("user1"); System.out.println(user1); }
|
Spring5 支持整合JUnit5
- Spring5整合JUnit4
第一步,引入Spring相关针对测试依赖
第二步,创建测试类,使用注解完成
1 2 3 4 5 6 7 8 9 10 11 12 13
| @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:bean1.xml") public class JTest4 {
@Autowired private UserService userService;
@Test public void test1(){ userService.accountMoney(); }
}
|
- Spring5整合JUnit5
第一步,引入JUnit5的jar包
第二步,创建测试类,使用注解完成
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
@SpringJUnitConfig(locations = "classpath:bean1.xml") public class JTest5 {
@Autowired private UserService userService;
@Test public void test1(){ userService.accountMoney(); } }
|
参考:https://frxcat.fun/