SpringBoot
文章平均质量分 69
菜鸟叮咚糖
太懒了,什么都没留下.........
展开
-
SpringBoot连接MySQL报错CommunicationsException: Communications link failure
SpringBoot连接MySQL报错CommunicationsException: Communications link failure。The last packet successfully received from the server was 10,026 milliseconds ago.连接超过10秒就报错原创 2023-01-04 15:03:34 · 2981 阅读 · 3 评论 -
服务器安装Maven打包、备份、停服、重启应用服务
提交代码到gitee(SVN),服务器脚本拉取最新代码、打包、备份原来的应用服务、日志文件,结束应用服务,并重新启动最新打包的应用。原创 2022-01-04 20:14:37 · 1764 阅读 · 0 评论 -
Linux导出Excel图片水印中文乱码解决
Linux中缺少字体、JDK字体安装OpenJDK字体安装Linux环境中POI导出Excel水印文字乱码Linux环境中生成验证码图片问题原创 2021-11-08 11:41:50 · 2518 阅读 · 0 评论 -
Docker从安装到入门
一、环境介绍Windows、VMware15 、Centos7.3(虚拟机)内核版本3.10.0-514.el7.x86_64docker安装要求内核版本需要3.10及以上。二、安装过程1、查看内核版本uname -r2、安装管理repository及扩展包的工具、为的是安装yum-config-manageryum-config-manager命令是对资源库(/etc/yum.repos.d/下的文件)进行增删改查yum -y install...原创 2021-10-05 13:16:58 · 374 阅读 · 0 评论 -
云服务器部署SpringBoot+MySQL+Redis+Nginx环境
一、安装MySQL1.1使用rpm文件安装下载rpm文件地址:MySQL :: Download MySQL Yum Repositoryhttps://dev.mysql.com/downloads/repo/yum/我的环境是所以下载:上传到服务器,准备安装:1.2安装1.执行: yum -y install mysql80-community-release-el7-3.noarch.rpm2.结果:3...原创 2021-09-10 00:38:26 · 665 阅读 · 0 评论 -
SpringBoot异步执行示例代码
一、异步执行类和方法注意事项:时间打印引用Hutool工具类import cn.hutool.core.date.DateUtil;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.scheduling.annotation.Async;import org.springframework.stereotype.Component;@Componentpubli...原创 2021-09-02 16:32:13 · 425 阅读 · 0 评论 -
MySQL保存表情Cause: java.sql.SQLException: Incorrect string value: ‘\xF0\x9F\x92\xA9\xE5\x91...‘
Springboot+MySQL保存表情报错Cause: java.sql.SQLException: Incorrect string value: '\xF0\x9F\x92\xA9\xE5\x91...'原创 2021-02-14 14:47:23 · 229 阅读 · 0 评论 -
SpringBoot-application.yml启动时报错Failed to load property source from location 'classpath:/applicati...
一、空格与Tab的问题1.挨个排查下二、注释问题1.注释使用 #这是一条注释三、字符集问题四、键值对中间没有空格driver-class-name: com.mysql.jdbc.Driverdriver-class-name:com.mysql.jdbc.Driver五、暂时遇到收集这些问题,如果朋友们遇到其他错误解决了,可以留...原创 2020-03-07 11:03:31 · 364 阅读 · 0 评论