一、找到模板需要填写的位置 二、可填写的参数如下: # {PROJECT_NAME} - -当前项目的名称 # {NAME} - --新文件名称 # {USER} - -当前用户的登录名 # {DATE} - -当前的系统日期 # {TIME} - -当前系统时间 # {YEAR} - -年 # { ...
分类:
其他好文 时间:
2021-06-13 10:47:52
阅读次数:
0
使用jpa时,我们需要继承至JpaRepository 继承之后,可以写HQL或者通过方法名自动生成SQL语句 生成SQL语句时JPA中的常用关键字 And 等价于 SQL 中的 and 关键字, 比如 findByUsernameAndPassword(String user, String pw ...
分类:
其他好文 时间:
2021-06-13 10:29:36
阅读次数:
0
mysql-索引 21.6.12【索引的分类】 单列索引:索引加在一个列上 普通索引(normal): alter table user add index `name`(`name`) 唯一索引(unique): alter table user add unique index `code`(` ...
分类:
数据库 时间:
2021-06-13 10:24:21
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
Rsync+Notify: yum install make gcc gcc-c++ 客户端启动rsync port:873/usr/local/rsync/bin/rsync --daemon --config=/usr/local/rsync/rsync.conf Client:tar xf r ...
分类:
其他好文 时间:
2021-06-13 09:26:06
阅读次数:
0
dock拉取sonarqube docker pull sonarqube 获取postgre docker pull postgres 创建postgre容器 docker run --name postgresql -e POSTGRES_USER=sonar -e POSTGRES_PASSW ...
分类:
Web程序 时间:
2021-06-11 18:43:15
阅读次数:
0
ORACLE不能导出空表的解决方法1.查找当前用户所有空表,并构建命令语句,为了生成空表集合。-- 查找所有空表SQL select table_name from user_tables where NUM_ROWS=0;-- 构造所有空表的命令语句select'alter table ' || ...
分类:
数据库 时间:
2021-06-11 18:41:55
阅读次数:
0
在 linux 文件结构中,有一个很神奇的目录 —— /usr。 讨论中,大部分观点认为: usr 是 unix system resources 的缩写; usr 是 user 的缩写; usr 是 unix software resources 的缩写。 根据常识判断,是 user 缩写的可能性 ...
分类:
系统相关 时间:
2021-06-11 18:37:38
阅读次数:
0
模块化,类似于java中的导包,将一些代码封装导出供其他地方调用 export用于规定模块的对外接口,,可导出一切js基本变量,如基本类型变量、函数、数组、对象等 import用于导入其他模块提供的功能 简单示例 user.js var name = "jack" var age = 21 func ...
分类:
其他好文 时间:
2021-06-11 18:23:59
阅读次数:
0
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --flag-switches-begin --disable-features=SameSiteByDefaultCookies,CookiesWitho ...
分类:
其他好文 时间:
2021-06-11 18:20:14
阅读次数:
0