10 2019 档案
摘要:天气接口地址:http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl 1、打开项目文件目录路径文件夹,在当前文件夹打开cmd,输入 wsimport -keep -p demo.cyj.service -verbose htt
阅读全文
摘要:一、导入jar包 poi-3.7.jarpoi-scratchpad-3.7.jarpoi-examples-3.7.jarpoi-ooxml-3.7.jarpoi-ooxml-schemas-3.7.jar xmlbeans-2.3.0.jar maven <dependency> <groupI
阅读全文
摘要:一、操作步骤 1、设置URL 2、设置请求模式:Post 3、设置Header:添加 Content-Type ,值为 text/xml;charset=utf-8 4、设置Body:勾选raw 5、输入Body内容:(详见 二) 二、请求WebService时的Body结构 <?xml versi
阅读全文
摘要:对页面传入的参数值进行过滤,过滤方法如下 public static String xssEncode(String s) { if (s == null || s.equals("")) { return s; } try { s = URLDecoder.decode(s, "UTF-8");
阅读全文
摘要:新增一个拦截器,在拦截器doFilter()方法增加以下代码
阅读全文
摘要:此方法需要自有服务器和域名,如果没有这些的开发者, 可以参考钉钉提供的内网穿透方式:https://www.cnblogs.com/pxblog/p/13862376.html 一、准备工作 1、域名 2、公网服务器 3、frp(下载地址:https://github.com/fatedier/fr
阅读全文
摘要:一、从官网下载openoffice软件 下载地址:http://www.openoffice.org/zh-cn/download/ 选择(RPM)类型进行下载,选择对应的版本,这里默认选择是最新的版本,选择完之后,点击“Download full installation”进行下载 二、将压缩包上
阅读全文
摘要:一、点击File-New-Project,选择Spring initializr ,选择jdk1.8及以上 二、填写相关信息,点击Next 3、选择Web -Spring Web,点击Next 4、输入项目名和选择项目路径 点击Finish,项目就创建完成了
阅读全文
摘要:在settings.xml文件中的mirrors下添加mirror标签 <!-- 阿里云仓库 --> <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>http://maven
阅读全文