https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:
其他好文 时间:
2021-07-05 17:23:38
阅读次数:
0
编写引导类注意要标明注解 @SpringBootApplication SpringApplication.run(BootWeb01Application.class, args); 再编写main方法的时候使用run方法 起步依赖spring-boot-starter-parent 父工程,主要 ...
分类:
编程语言 时间:
2021-07-05 17:08:07
阅读次数:
0
1.问题: Warning: Permanently added 'github.com' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read f ...
分类:
其他好文 时间:
2021-07-05 16:56:22
阅读次数:
0
方式 一: 在实体类上加@DatetimeFormat与@JsonFormat注解 @DatetimeFormat:将前台日期字符串转换成Date格式 @DateTimeFormat(pattern="yyyy-MM-dd") @JsonFormat:将服务器端Date日期转换成指定字符串格式 @J ...
分类:
编程语言 时间:
2021-07-05 16:45:33
阅读次数:
0
我司gerrit 在gerrit review的流程上用js 定制了一堆precheck的checkbox,有时候遇上浏览器抽风,或者gerrit 流程顺序不对,导致label不能在gerrit界面上手动修改,时间紧急只好用命令行 修改gerrit label,记录下命令: ssh -p 29418 ...
分类:
其他好文 时间:
2021-07-02 16:42:29
阅读次数:
0
※ 树莓派Zero W ,默认 hostname为 raspberrypi ,通过USB网络方式登陆时,修改hostname后,登录主机名要随之变化。 ① ssh pi@raspberrypi 更新系统: sudo apt update && sudo apt upgrade -y ② 安装apac ...
分类:
Web程序 时间:
2021-07-02 16:33:55
阅读次数:
0
1、创建用户 sftpuser,并禁止ssh登录,不创建家目录 useradd -s /sbin/nologin -M sftpuser 2、设置用户密码 passwd sftpuser --密码:自己定义 3、创建sftp根目录,所有sftp用户都将在该目录下活动 mkdir /home/sftp ...
分类:
其他好文 时间:
2021-07-02 16:15:04
阅读次数:
0
1、安装git客户端 安装注意点:不要放到C盘(可能会有权限问题) 2、注册码云 码云地址:https://gitee.com/ 3.在码云上创建仓库(一定要是私有仓库) 4、生成ssh公钥 4.1、安装Git客户端成功后,运行Git Bash 4.2、输入命令:ssh-keygen -t rsa ...
分类:
其他好文 时间:
2021-07-02 15:59:21
阅读次数:
0
//springmvc就是一个spring框架,它能创建对象,并将对象放到springMVC的容器中。也能使用ioc管理对象,也可以使用<bean>,@Component,@Repository,@Service,@Controller等注解。但springmvc容器中主要放的是控制器对象 一、控制 ...
分类:
编程语言 时间:
2021-07-02 15:48:41
阅读次数:
0
Spring Boot (mybatis)配置数据库 连接方式 1、第一种方式,使@Value 注解的方式进行注入 1.1 编写配置文件 例如 jdbc.properties jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql ...
分类:
数据库 时间:
2021-07-02 15:47:55
阅读次数:
0