摘要:
Caused by: java.security.cert.CertificateException: No subject alternative names matching IP address xxx.xx.xx.xx found axis2本地生成客户端代码时报错,需要配置本地的host文 阅读全文
摘要:
启动服务 start nginx 关停 taskkill /f /t /im nginx.exe 查看进程有木有 tasklist /fi "imagename eq nginx.exe" 后续完善本地跨域问题 阅读全文
摘要:
String json="{"retCode":"0000000","retDesc":"操作成功!","timestamp":"2022-04-15 15:27:48.909","rspBody":{"informationId":14233,"informationName":"xxxxxxxx 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8"?> <output> <message> <result>1</result> <description>正常</description> </message> <data> <infoList> <informationId 阅读全文
摘要:
windows下mysql忘了安装时的root密码 1、 首先检查mysql服务是否启动,若已启动则先将其停止服务,可在开始菜单的运行,使用命令: net stop mysql (如果此命令不管用,可以去任务管理里面服务里面找到mysql关闭) 打开第一个cmd窗口,切换到mysql的bin目录,运 阅读全文
摘要:
服务器调用服务器接口之间的抓包 通过命令 sudo tcpdump host 10.1.xx.xx -w captcha.cap 可以在执行的当前路径下生成一个 cap文件 再通过Wireshark.exe工具打开查看每个包 阅读全文
摘要:
1、先把所有的表和数据换成oracle里 2、如果是maven项目,需要处理pom的依赖文件 <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.3</version> 阅读全文
摘要:
IOS手机访问网页window.location.href跳转新页面第一次可以第二次报错失效 <a style="text-decoration:none;" id="installs" href="javascript:;"> <img src="../image/tubiao1.png"/> < 阅读全文
摘要:
create or replace procedure updatepassword is begin --修改所有用户的密码为: update org_employee t set userpassword= 'E04755387E5B5968EC213E41F70C1D46' ; end upd 阅读全文
摘要:
package demo; import java.io.File; import java.io.FileOutputStream; import java.io.InputStream; import java.util.regex.Matcher; import java.util.regex 阅读全文