
记录
Efforts_To_Advanced
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解決mysql 服务正在启动或停止中 请稍后片刻再试一次
mysql服务正常状态:正在运行、待启动 笔者最近遇到服务显示状态:启动 很明显状态是不对的,mysql也一直连不上。。。 百度很久网上都是教我们如何启动mysql,可我这里显示的就是启动状态啊!!!关不掉也没法运行。 重启电脑、卸载mysql的漫长道路开始了。 如何干净卸载?如何完美卸载?个人亲测?这些博客我都试了,最后,mysql还是坚强的存活在服务中,即使已经告诉我服务已删除。 再次坚强的试一试禁止mysql,仍然失败。。我都已经卸载了,为什么这个服务还那么顽固呢? 直到原创 2020-06-17 15:07:00 · 539 阅读 · 0 评论 -
Springboot JdbcTemplate使用druid连接池
1、配置文件 datasource: url: jdbc:mysql://localhost:3306/XXX?readOnlyPropagatesToServer=false&serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&&useSSL=false username: root password: root原创 2020-06-09 11:40:12 · 935 阅读 · 0 评论 -
maven项目引入poi包和jfreechart包
Apache POI提供API给Java程式对Microsoft Office格式档案读和写的功能。 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.9</...原创 2019-09-26 10:35:44 · 1907 阅读 · 0 评论 -
springboot报错An attempt was made to call a method that does not exist.
这个问题网上坑太多,花了两三个小时才搞明白~ 主要是父子依赖版本不一致造成的~ 例如:我之前的pom文件中的版本如下: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifact...原创 2019-09-29 17:35:08 · 17088 阅读 · 3 评论