摘要: ```java import org.springframework.util.AntPathMatcher; public static void main(String[] args) { AntPathMatcher matcher = new AntPathMatcher(); System 阅读全文
posted @ 2023-08-15 10:55 搬运工001 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 1. 解压 tar -xvf 2. 配置profile ``` vi /etc/profile ``` 3. 添加下面内容 ``` export JAVA_HOME=/opt/jdk1.8.0_191/ export PATH=$JAVA_HOME/bin:$PATH ``` 4. 刷新 ``` s 阅读全文
posted @ 2023-06-06 22:35 搬运工001 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 有一次启动项目莫名其妙卡住,卡很久,等半小时没用;重启idea也没用,还是每次都在相同的地方卡住。无奈打个jar,发现jar能正常启动,排除是代码的问题。 试着跳过断点,居然顺利的启动了;马上检查所有的断点。发现jar里面有不少断点,项目启动的时候会调用到,但是idea有时候可能不切换到debug模 阅读全文
posted @ 2022-10-28 10:45 搬运工001 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 突然想起以前听说的一个题目:2个线程交替打印! 自己闲来无事,想了一下需求,然后自己实现!!! **最后整理需求:**2个线程交替打印一个数字从1-10。 实现思路: 对一个共享资源加锁。 某个线程获取到资源后,打印数字并+1;然后唤醒其他线程,自己则等待! 循环执行该逻辑,即可实现交替打印。 点击 阅读全文
posted @ 2022-09-17 18:47 搬运工001 阅读(124) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { int binary = 0b11; int octal = 011; int decimal = 11; int hexadecimal = 0x11; System.out.println("二进制11:" + b 阅读全文
posted @ 2022-07-18 11:47 搬运工001 阅读(42) 评论(0) 推荐(0) 编辑
摘要: idea打包上传到Linux服务器后,启动jar的时候报 Error: Invalid or corrupt jarfile 因为我用的是MobaXterm传输jar,换xftp上传,就正常了 阅读全文
posted @ 2022-07-06 18:10 搬运工001 阅读(1578) 评论(0) 推荐(0) 编辑
摘要: maven打包项目报JS编译的错误 经过检查是增加了CSS/JS压缩的插件,注释掉插件正常打包 阅读全文
posted @ 2022-06-27 11:12 搬运工001 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 直接参考 https://blog.csdn.net/maoer95209520/article/details/118927413 阅读全文
posted @ 2022-06-22 14:19 搬运工001 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 配置这个足够了! spring: thymeleaf: cache: false 访问静态资源 忽略掉static,直接从static的下一级作为根目录 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spri 阅读全文
posted @ 2022-06-21 17:54 搬运工001 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 经过网上查找,是编码格式的问题,去掉BOM即可。 idea操作如下: BOM介绍:来源于百度百科 https://baike.baidu.com/item/BOM/2790401?fr=aladdin 阅读全文
posted @ 2022-06-20 09:48 搬运工001 阅读(103) 评论(0) 推荐(0) 编辑