- 博客(34)
- 问答 (2)
- 收藏
- 关注
原创 多个类实现SchedulingConfigurer,不执行定时任务
定时、定时任务、ScheduledTaskRegistrar、Trigger、不执行
2025-02-27 18:51:18
188
原创 SpringBoot时区转换规则
SpringBoot时区转换规则,jackson,SpringBoot,time_zone,serverTimeZone、date、DateTime、TimeStamp
2024-06-24 21:32:40
1657
1
原创 Springboot配置文件相同文件名 后缀不同优先级(覆盖)
Springboot 、application.properties、application.yml、 application.yaml
2024-01-18 19:35:47
551
原创 mysql8 Access denied for user ‘root‘@‘localhost‘ (using password: YES)
mysql 权限Permission denied 、Access denied
2023-10-19 00:38:56
2113
原创 Shallow clone detected, no blame information will be provided. You can convert to non-shallow
sonarqube、sonar、git、gitlab
2023-07-29 22:10:52
335
原创 nginx.conf nginx配置文件常见配置解析 root、alais、proxy_pass
nginx、配置文件、root、alais、proxy_pass
2022-12-26 21:34:26
4396
原创 mongoTemplate批量新增或者更新
// list为要更新或者新增的数据,使用时填充上自己的数据集合List<MultiAnalyseMakeModel> list = new ArrayList();List<Pair<Query, Update>> updateList = new ArrayList<>(list.size()); BulkOperations operations = mongoTemplate.bulkOps(BulkOperations.Bul.
2021-10-22 17:53:42
3742
原创 redis客户端可视化工具 Another-Redis-Desktop-Manager.1.4.5
很好用的redis客户端工具包含windows、linux、mac版本链接:https://pan.baidu.com/s/1SaM96b9DvPJjpOTq_35pdQ提取码:e6m3如过期,请留言
2021-06-24 10:46:21
557
2
原创 MissingServletRequestParameterException: Required List parameter idList is not present
// 前端代码:// 声明空的数组const ids = []// 向数组中添加元素for (const item of this.multipleSelection) { ids.push(item.id)}// 封装参数this.form = { gradeInterval: 0, idList: ids.join(',') // 主键如果有多个使用逗号拼接,如果只有一个则不需要拼接,直接赋值即可}// 发送请求 post方式,参数为this.form.grade.
2021-06-09 13:50:18
6069
转载 apache-activemq-5.16.0下载
链接:https://pan.baidu.com/s/14qvJ2zMGwycK-K76pENWTA提取码:6vwc
2021-04-25 16:07:10
594
原创 kibana-6.3.2-windows-x86_64 下载
kibana-6.3.2-windows-x86_64 下载链接:https://pan.baidu.com/s/18b8Ql_QrSQY3m36yQhEVvg提取码:s2iw
2021-04-25 16:02:09
222
原创 SpringCloud与SpringBoot版本关系
Release TrainBoot Version2020.0.x aka Ilford2.4.xHoxton2.2.x, 2.3.x (Starting with SR5)Greenwich2.1.xFinchley2.0.xEdgware1.5.xDalston1.5.xSpring Cloud Dalston,Edgware和Finchley均已达到使用寿命终止状态,不再受支持。...
2021-01-12 15:14:57
215
原创 java redis 常见问题
1.描述:org.springframework.util.Assert.isTrue(ZLjava/util/function/Supplier;)V 原因:redis与spring版本不匹配 <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> ...
2020-05-10 11:27:00
317
转载 Redis安装
1、安装redis第一步:下载redis安装包wget http://download.redis.io/releases/redis-4.0.6.tar.gz 1 2 3 4 5 6 7 8 9 10 11 [root@iZwz991stxdwj560bfmadtZ local...
2018-10-10 16:02:27
372
转载 CentOS7虚拟机配置静态IP
最近在研究DC/OS的安装,读了很多安装方法后决定先从docker的安装入手,由于DC/OS的安装必须在CentOs7版本以上,所以就在VM下安装了CentOs7,殊不知安装后并不能上网,于是乎又转到研究CentOs7在虚拟机下的上网问题。经过各种版本的尝试后,发现在我的环境下(Windows10 Vmware12.0 CentOs7)如下方法是可行的:1.在windows下查看自己的ip设...
2018-09-12 10:35:24
399
转载 PageHelper-----Mybatis分页插件
PageHelper的使用 1、pageHelper的maven依赖及插件配置:com.github.pagehelper&lt;dependency&gt; &lt;groupId&gt;com.github.pagehelper&lt;/groupId&gt; &lt;artifactId&gt;pagehelper&lt;/artif
2018-09-11 13:45:37
414
转载 FastJson--阿里巴巴公司开源的速度最快的Json和对象转换工具
这是关于FastJson的一个使用Demo,在Java环境下验证的class User{ private int id; private String name; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName()...
2018-09-10 11:25:38
373
转载 fastJson API
FastJSON是一个很好的java开源json工具类库,相比其他同类的json类库,它的速度的确是fast,最快!但是文档做得不好,在应用前不得不亲测一些功能。 实际上其他的json处理工具都和它差不多,api也有几分相似。&nbs...
2018-09-07 18:19:38
1002
转载 JAVA代码优化
转载:http://www.cnblogs.com/zhaoyan001/p/6078196.html 通过java代码规范来优化程序,优化内存使用情况,防止内存泄露可供程序利用的资源(内存、CPU时间、网络带宽等)是有限的,优化的目的就是让程序用尽可能少的资源完成预定的任务。优化通常包含两方面的内容:减小代码的体积,提高代码的运行效率。本文讨论的主要是如何提高代码的...
2018-09-03 15:41:20
218
转载 Java后台面试 常见问题
Nginx负载均衡轮询、轮询是默认的,每一个请求按顺序逐一分配到不同的后端服务器,如果后端服务器down掉了,则能自动剔除ip_hash、个请求按访问IP的hash结果分配,这样来自同一个IP的访客固定访问一个后端服务器,有效解决了动态网页存在的session共享问题。weight、weight是设置权重,用于后端服务器性能不均的情况,访问比率...
2018-08-31 12:23:45
1313
转载 eclipse 用maven创建web项目
在eclipse中,用maven创建一个web项目工程 &amp;lt;div class=&quot;postBody&quot;&amp;gt; &amp;lt;div id=&quot;cnblogs_post_body&quot; class=&am
2018-08-27 11:11:02
128
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人