Spring Boot 搞定 session 共享

1.1 创建工程

首先 创建一个 Spring Boot 工程,引入 Web、Spring Session 以及 Redis:

阅读全文

Spring Boot 整合 Shiro

原生的整合

  • 创建项目

创建一个 Spring Boot 项目,只需要添加 Web 依赖即可:
项目创建成功后,加入 Shiro 相关的依赖,完整的 pom.xml 文件中的依赖如下

阅读全文

Form_Fillers

Form fillers

VQgsQe.jpg

阅读全文

Docker-hello-world

系统环境

windows10 ltsc

安装 Docker

Docker下载

阅读全文

Description Resource Path Location Type An error occurred while filtering

Eclipse下springboot maven项目,报错如下

Description Resource Path Location Type An error occurred while filtering

阅读全文

mac下配置开发环境

常用命令

显示隐藏文件

1
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

阅读全文

Hello World

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import java.util.*;

public class HelloWorld{

public static String randomString(int i)
{
Random ran = new Random(i);
StringBuilder sb = new StringBuilder();
for (int n = 0; ; n++)
{
int k = ran.nextInt(27);
if (k == 0)
break;

sb.append((char)('`' + k));
}

return sb.toString();
}

public static void main(String[] args){
System.out.println(randomString(-229985452)+" "+randomString(-147909649));
}

}

阅读全文

mysql数据去重

Sql语句来自网络,个人收集,未进行测试,请使用前备份

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DELETE consum_record
FROM
consum_record,
(
SELECT
min(id) id,
user_id,
monetary,
consume_time
FROM
consum_record
GROUP BY
user_id,
monetary,
consume_time
HAVING
count(*) > 1
) t2
WHERE
consum_record.user_id = t2.user_id
AND consum_record.monetary = t2.monetary
AND consum_record.consume_time = t2.consume_time
AND consum_record.id > t2.id;

阅读全文

生成乱数假文

lorem

输入 lorem 然后按 tab

阅读全文