1 <project xmlns="http://maven.apache.org/POM/4.0.0" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache ...
分类:
其他好文 时间:
2020-10-18 10:03:44
阅读次数:
14
1 /** 2 * 定义调用外部接口实例 3 */ 4 private static final RestTemplate INSTANCE = new RestTemplate(); 5 6 public static RestTemplate getInstance() { 7 return H ...
分类:
其他好文 时间:
2020-10-14 20:46:35
阅读次数:
41
1.框架搭建,创建一个maven项目打war包 web.xml文件 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http:// ...
分类:
数据库 时间:
2020-10-12 20:27:31
阅读次数:
32
下面我们介绍Java类库所提供的常用类及类的常用方法 一、java.lang.String 1. String类常用的构造函数 public String(String original) 使用串对象original,创建字符串对象,其中original可以是字符串常量或字符串对象 public S ...
分类:
编程语言 时间:
2020-10-12 20:13:05
阅读次数:
27
Java SSLSocket JSSE(Java Security Socket Extension)是Sun公司为了解决互联网信息安全传输提出的一个解决方案,它实现了SSL和TSL协议,包含了数据加密、服务器验证、消息完整性和客户端验证等技术。通过使用JSSE简洁的API,可以在客户端和服务器端之 ...
分类:
编程语言 时间:
2020-10-12 20:02:51
阅读次数:
24
1、下载python 3.0版本以上 直接搜索python https://www.python.org/getit/ 2、安装 pycharm 方便编写代码,python自带idle的编辑器,建议使用pycharm 比较方便。 3、安装谷歌浏览器 4、下载对应的谷歌版本的selenium 5、将c ...
分类:
编程语言 时间:
2020-10-07 20:37:13
阅读次数:
31
Link Cut Centroids Fishing Prince loves trees, and he especially loves trees with only one centroid. The tree is a connected graph without cycles. A v ...
分类:
其他好文 时间:
2020-09-24 21:11:56
阅读次数:
36
一、IDEA中 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac ...
分类:
编程语言 时间:
2020-09-21 12:03:05
阅读次数:
48
1 准备工作 导入所需要jar包的Maven坐标 <!--引入pageHelper分页插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5 ...
分类:
编程语言 时间:
2020-09-17 23:34:36
阅读次数:
44