- 博客(4)
- 收藏
- 关注
原创 使用Druid连接池的时候出现:discard long time none received connection
解决办法:设置 druid.mysql.usePingMethod 为 false可以在 @Configuration 标注的类中添加该方法 @PostConstruct public void setUsePingMethod(){ System.setProperty("druid.mysql.usePingMethod", "false"); }网上都说可以将druid.mysql.usePingMethod设置为false来解决,但是都没有说怎么设置!!
2021-02-01 16:58:06 2287 2
转载 访问HTTPS请求遇到SSL信任问题
在Java编程中,请求远程https链接的时候,如果报了这个错误该如何解决呢?// javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to re.
2020-11-16 17:57:25 1539 2
原创 前后端时间数据交互
前后端时间数据交互前端能获取后端时间,跟后端能接收前端时间的要点是前后端的时间格式要一致在后端使用@JsonFormat注解使用方式很简单,在实体类字段加上该注解@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")private Date createdTime;如果你的是springboot项目,你想更加方便点,你也可以在yml文件上配置spring: jackson: time-zone: GMT+8
2020-11-10 22:33:18 1331
原创 Java后端如何配置跨域
Java后端如何配置跨域在springboot项目中如何设置跨域,其实很简单,只需要在Java项目中加一个配置类即可可以用这种配置类import org.springframework.beans.factory.annotation.Value;import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.CorsRegist
2020-11-10 21:59:42 4294
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人