上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: package com.lezu.springboot.config; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import org.spri 阅读全文
posted @ 2022-06-14 21:34 难忘是想起 阅读(2) 评论(0) 推荐(0)
摘要: 工具类交给Spring管理 package com.lezu.springboot.configuration; import org.springframework.boot.web.context.WebServerInitializedEvent; import org.springframe 阅读全文
posted @ 2022-06-07 23:50 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: CountDownLatch的使用 package com.lezu.springboot.test; import java.util.concurrent.CountDownLatch; public class Main { /** * 需要注意的点: * 每个new Therad线程中的代码 阅读全文
posted @ 2022-06-07 13:10 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、官网下载nginx稳定版 nginx官网 2、下载之后,解压到指定的目录 3、在nginx目录下打开cmd控制台,输入start nginx ,然后在浏览器页面输入localhost,出现如下界面则表示安装成功。默认监听80端口号。 4、负载均衡配置(打开nginx.conf) weight代表 阅读全文
posted @ 2022-05-24 20:05 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: package com.lezu.springboot.controller; import java.util.concurrent.locks.Condition; import java.util.concurrent.locks.Lock; import java.util.concurre 阅读全文
posted @ 2022-05-24 17:39 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、导入pom.xml <!--redis--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency 阅读全文
posted @ 2022-05-23 23:32 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 1、导入pom.xml <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.8.1</version> </dependency> 2、代码编写加测试 阅读全文
posted @ 2022-04-14 16:40 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { //LongAdder配合parallelStream一起使用 LongAdder counter = new LongAdder(); List<String> list = new ArrayList<>(); l 阅读全文
posted @ 2022-03-11 14:54 难忘是想起 阅读(0) 评论(0) 推荐(0)
摘要: 错误日志: java.util.IllegalFormatConversionException: f != java.lang.String public static void main(String[] args) { //错误写法 //String longitude1 = String.f 阅读全文
posted @ 2022-03-08 14:01 难忘是想起 阅读(1) 评论(0) 推荐(0)
摘要: -- 查看user表结构 show create table user 阅读全文
posted @ 2022-03-07 11:09 难忘是想起 阅读(0) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页