摘要:
三、常见问题: 1、界面出现红色提示 1)EMERGENCY! EUREKA MAY BE INCORRECTLY CLAIMING INSTANCES ARE UP WHEN THEY'RE NOT. RENEWALS ARE LESSER THAN THRESHOLD AND HENCE THE 阅读全文
摘要:
1、下载JSONView插件 下载地址:https://pan.baidu.com/s/1igNXTJqITE2reA9N-iWDHw 提取码:2tr2 2、安装插件 点击Chrome浏览器又上角3个竖点->更多工具->扩展程序->加载已解压的扩展程序->选择JSONView的解压路径 阅读全文
摘要:
1、查询SpringCloud与SpringBoot版本的对应关系 输入:https://spring.io/projects/spring-cloud#overview 输入:https://spring.io/projects/spring-cloud#learn 2、查询Spring Boot 阅读全文
摘要:
1、代码片段 List<User> userList =userService.findByWhere(null,user); int size = userList.size(); int onceSize = 50; if(userList!=null && userList.size()>0) 阅读全文
摘要:
Json序列化与反序列化工具,常用的有jackson、fastjson、Gson。其中fastjson性能最快,但是处理复杂类型的会有bug,我用的jackson,因为无需单独引入依赖,工程中基本会被其他包一起引入。 一、jackson 1、引入依赖 <dependency> <groupId>co 阅读全文
摘要:
介绍两种常用的分页方式,github的PageHelper和MyBatis-Plus自带的分页 一、使用PageHelper分页 1、引入依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-s 阅读全文
摘要:
一、安装与配置 1、下载Seata 点击进入下载页面(搜索Assets关键字,找到下载位置) 2、修改配置文件 D:\workset\javaset\seata-server-1.3.0\seata\conf\file.conf 1、将mode = "file" 改为 mode = "db" 2、修 阅读全文
摘要:
1、官网:https://nacos.io/zh-cn/ 2、下载地址:https://github.com/alibaba/nacos/releases 3、修改配置:D:\workset\javaset\nacos-server-2.1.0\nacos\bin\startup.cmd 将set 阅读全文
摘要:
1、修改配置文件 设置redis.conf中daemonize为yes,确保守护进程开启。 2、创建脚本 /etc/init.d/redis #!/bin/bash #chkconfig: 2345 10 90 cd /usr/local/myroom/redis-5.0.4/bin ./redis 阅读全文
摘要:
grep 筛选行 awk 截取列 [root@localhost tmp]# cat student.txt ID Name gender mark 1 sl M 89 2 hus M 90 3 sd M 99 [root@localhost tmp]# awk '{printf $2 "\t" $ 阅读全文