摘要: 1.跳转测试页面 获取的url上的参数 <!doctype html> <html lang="en"> <head> <title>从URL中获取参数</title> <meta charset="utf-8"> </head> <body> 测试页面 <div id="view" style=" 阅读全文
posted @ 2022-10-24 15:26 When? 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1.测试传参加密是否正确页面 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 文本框</title> <link rel="stylesheet" href="https://cdn.staticf 阅读全文
posted @ 2022-10-24 15:19 When? 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1.打开权限 vim /etc/ssh/sshd_config 去掉 PubkeyAuthentication yes 一行的# 2.重启ssh服务 systemctl restart sshd 2.生成秘钥对[windows cmd 或 liunx服务器] ssh-keygen -t rsa 3. 阅读全文
posted @ 2022-10-21 16:11 When? 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1.Nexus 搭建私有Maven仓库 参考连接:https://www.cnblogs.com/wuwei928/p/10338307.html 2.生成jar文件:原先的插件配置: <build> <plugins> <groupId>org.springframework.boot</grou 阅读全文
posted @ 2022-10-21 10:55 When? 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 1.pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 阅读全文
posted @ 2022-10-21 10:53 When? 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 查询锁--查看数据库的锁的来源、类型等select t.object_id, t.session_id, t.locked_mode from v$locked_object ; 查询锁与session连接--查询 锁与session连接 用户名、serial#、时间select s.usernam 阅读全文
posted @ 2022-10-10 19:40 When? 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 添加项目 File >New SOAP Project 发送请求 阅读全文
posted @ 2022-09-26 21:03 When? 阅读(63) 评论(0) 推荐(0) 编辑
摘要: Redis 出现Cannot allocate memory错误 增加服务器内存后正常运行。 阅读全文
posted @ 2022-09-26 20:43 When? 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 发送post请求 New >Requesst 获取curl命令 Code >cURL 阅读全文
posted @ 2022-09-25 13:02 When? 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 开启https Tools >Options >HTTPS 发送请求 Composer >Execute 阅读全文
posted @ 2022-09-24 10:28 When? 阅读(17) 评论(0) 推荐(0) 编辑