spring-boot 2.0.0 以下版本
1 |
|
在
spring-boot
2.0.x
以上版本,要在WebMvConfig
上添加@Order(0)
注解,否则配置不生效
1 | import com.fasterxml.jackson.databind.module.SimpleModule; |
spring-boot 2.1.x 版本
1 |
|
spring-boot 2.0.0 以下版本
1 | @Configuration |
在
spring-boot
2.0.x
以上版本,要在WebMvConfig
上添加@Order(0)
注解,否则配置不生效
1 | import com.fasterxml.jackson.databind.module.SimpleModule; |
spring-boot 2.1.x 版本
1 | @Bean |