10 2022 档案
摘要:Swagger 是一款RESTFUL接口的文档在线自动生成+功能测试功能软件 1.添加依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2<
阅读全文
摘要:1.底包 <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-rsa</artifactId> </dependency> RsaSecretEncryptor 类 encr
阅读全文
摘要:1.跳转测试页面 获取的url上的参数 <!doctype html> <html lang="en"> <head> <title>从URL中获取参数</title> <meta charset="utf-8"> </head> <body> 测试页面 <div id="view" style="
阅读全文
摘要:1.测试传参加密是否正确页面 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 文本框</title> <link rel="stylesheet" href="https://cdn.staticf
阅读全文
摘要:1.打开权限 vim /etc/ssh/sshd_config 去掉 PubkeyAuthentication yes 一行的# 2.重启ssh服务 systemctl restart sshd 2.生成秘钥对[windows cmd 或 liunx服务器] ssh-keygen -t rsa 3.
阅读全文
摘要:1.Nexus 搭建私有Maven仓库 参考连接:https://www.cnblogs.com/wuwei928/p/10338307.html 2.生成jar文件:原先的插件配置: <build> <plugins> <groupId>org.springframework.boot</grou
阅读全文
摘要:1.pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency>
阅读全文
摘要:查询锁--查看数据库的锁的来源、类型等select t.object_id, t.session_id, t.locked_mode from v$locked_object ; 查询锁与session连接--查询 锁与session连接 用户名、serial#、时间select s.usernam
阅读全文