hutool maven坐标
pom.xml <!-- hutool --> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.21</version> </dependency>
2024-01-28
|
0
|
0
配置nodejs环境
npm config set cache "/home/xclhove/nodejs/node_cache" npm config set prefix "/home/xclhove/nodejs/node_global"
2024-01-28
|
0
|
0
element-plus form表单校验
const validateBackAccount = (rule, value, callback) => { //return value === value.replace(/[^[a-z0-9A-Z]+$/g, '') //return '' === value.replace(/[a-z0
2024-01-28
|
0
|
0
MySQL创建用户并授权
MySQL创建用户并授权SQL: create user user@localhost identified by 'password'; grant alter, alter routine, create, create routine, create temporary tables, cre
2024-01-28
|
0
|
0
MySQL查看端口
MySQL查看端口的sql语句: show global variables like 'port';
2024-01-28
|
0
|
0