springboot 使用经验
Posted bcombettter
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 使用经验相关的知识,希望对你有一定的参考价值。
目录
1. 返回时间格式化问题
2. springboot 中获取属性
3. SpringBoot中启动是忽略某项检测
4. 启动不开启安全校验
一返回时间格式化问题
在Spring Boot项目中,使用@RestController注解,返回的java对象中若含有date类型的属性,则默认输出为TIMESTAMP时间戳格式 ,如下所示:
解决方案
解决方案有多种,这里只记录本人觉得最简单的一种。一般我们的日期显示格式为:yyyy-MM-dd HH:mm:ss,所以我们可以在配置文件中进行全局配置。
在application.properties配置文件增加以下配置::
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss spring.jackson.time-zone=GMT+8
第一行指定date输出格式为yyyy-MM-dd HH:mm:ss;
第二行指定时区,解决8小时的时间差问题。
运行结果:
==========================================================================================================================
二 springboot 中获取属性
/**
* 图片路径,全局变量处获取
*/
@Value("${export.diagram.path}")
private String exportDiagramPath;
==========================================================================================================================
三 SpringBoot中启动是忽略某项检测
在搭建springboot框架时,启动会检测某些连接是否正常, 比如redis,rabbitmq等等组件, 此时如果没有启动相关服务,或者你这个组件没有用到此组件,则不希望检测此项.
可以在application.properties 中填入
management.health.redis.enabled = false ##启动不检测redis
management.health.rabbit.enabled = false ##启动不检查rabbit
==========================================================================================================================
4. 启动不开启安全校验
security:
basic:
enabled: false
===================================================================================================================================
5
以上是关于springboot 使用经验的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot启动报错“Consider defining a bean of type ‘xxx.mapper.UserMapper‘ in your configuration.“(代码片段
Spring boot:thymeleaf 没有正确渲染片段
全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段