SpringBoot
文章平均质量分 86
Levent_G
喜怒不形于色,成败内敛于胸!
展开
-
SpringBoot2.4中profile include后不生效的解决方法
背景提要使用SpringInitializer创建新项目后,使用原项目中的代码结构对项目进行初始化,其中springProfile报缓关系如下:application.yml include: repository,service,web active: devapplication-dev.yml include: repository-dev,service-dev,web-devapplication-release.yml include: repository-release,se原创 2020-12-29 19:04:37 · 6700 阅读 · 4 评论 -
SpringBoot2.0中禁用内置Tomcat的不安全请求方法
禁用内置Tomcat的不安全请求方法SpringBoot2.0之前版本在SpringBoot2.0之前的版本中可以向容器注册[EmbeddedServletContainerFactory ]类实现对内置Servlet容器的配置@Bean public EmbeddedServletContainerFactory servletContainer() { T...原创 2018-10-24 11:49:14 · 5905 阅读 · 4 评论 -
Springboot2.1在配置文件中指定Jackson忽略null属性
在2.1版本的springboot中配置Jacksonspring: jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 serialization.write_dates_as_timestamps: false default-property-inclusion: non_null...原创 2018-11-30 09:42:17 · 2873 阅读 · 0 评论 -
Springboot+MyBatis,启动报‘Skipping MapperFactoryBean with name 'xxx' and 'xxx'mapperInterface. ’警告
问题描述在SpringBoot + MyBatis项目开发时,使用了Mapper xml和Mapper Interface的方式开发,启动时控制台输出如下警告: /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ...原创 2019-04-18 17:02:07 · 24460 阅读 · 4 评论