2023年10月26日
摘要: <script src="https://cdn.bootcss.com/blueimp-md5/2.10.0/js/md5.min.js"></script> 阅读全文
posted @ 2023-10-26 20:16 瓜皮通 阅读(3) 评论(0) 推荐(0) 编辑
2023年1月4日
摘要: ####发送http请求,需要携带token数据,创建Header传输 Header header = Header.create(); header.set("Authorization", "Bearer " + token); // 携带token response = Http.get(re 阅读全文
posted @ 2023-01-04 00:02 瓜皮通 阅读(1629) 评论(0) 推荐(0) 编辑
2023年1月3日
摘要: ####访问的是一个https get请求,报错需要SSL证书验证,以下方法直接跳过 boolean check = Http.disableJvmHttpsCheck(); // 忽略https的证书检查 阅读全文
posted @ 2023-01-03 23:58 瓜皮通 阅读(71) 评论(0) 推荐(0) 编辑
2022年7月19日
摘要: ###database.properties基本配置 jdbc.driver=com.mysql.jdbc.Driver # jdbc.url=jdbc:mysql://localhost:3306/ssmbuild?useSSL=true&useUnicode=true&characterEnco 阅读全文
posted @ 2022-07-19 15:45 瓜皮通 阅读(204) 评论(0) 推荐(0) 编辑
摘要: ###applicationContext.xml头信息 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w 阅读全文
posted @ 2022-07-19 15:43 瓜皮通 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1 <?xml version="1.0" encoding="UTF-8" ?> 2 <!DOCTYPE configuration 3 PUBLIC "-//mybatis.org//DTD Config 3.0//EN" 4 "http://mybatis.org/dtd/mybatis-3- 阅读全文
posted @ 2022-07-19 15:37 瓜皮通 阅读(47) 评论(0) 推荐(0) 编辑