- 浏览: 55624 次
- 性别:
- 来自: 南宁
最新评论
文章列表
使用servlet方式,该方式使用服务器端口
此种方式的话需要依赖于jax-ws 2.2中的jar文件,另外还需要下载额外的jaxws-spring-1.8.jar和xbean-spring-3.0.jar
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http ...
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateE ...
快捷键Ctrl+Shift+I;注意在debug透视图的调用堆栈中选择正确的调用;最好选中该变量。
IIS7.0默认限制上传文件大小为30000000字节(约28.6M)。打开C:\Windows\System32\inetsrv\config\schema\IIS_schema.xml,找到如下内容:<element name="requestLimits"><attribute name="maxAllowedContentLength" type="uint" defaultValue="30000000" /><attribute name="maxUrl" ...
现提供一种修改默认6200端口的方法,具体如下,将
<context-param>
<param-name>AdminPort</param-name> <param-value>6201</param-value> </context-param>
复制到WEB-INF\web.xml 文件中,根据现场情况修改端口号。
function loadTopWindow(){
if (window.top!=null && window.top.document.URL!=document.URL){
window.top.location= document.URL;
}
}
<!--在body的写上onload事件要调用的方法-->
<body onload="loadTopWindow()">
方法1: 用SET PASSWORD命令
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');
方法2:用mysqladmin
mysqladmin -u root password "newpass"
mysqladmin -u root password oldpass "newpass"
方法3: 用UPDATE直接编辑user表
use mysql;
UPDATE user SET Passw ...
权限问题,授权 给 root 所有sql 权限
grant all privileges on *.* to root@"%" identified by ".";flush privileges;
1)Err 1067:
原因是timestamp的默认值不正确。
查阅资料得知,mysql5.7版本中有了一个STRICT mode(严格模式),而在此模式下默认是不允许设置日期的值为全0值的,所以想要
解决这个问题,就需要修改sql_mode的值。
使用命令 selec ...
$ jps -v31970 Jps -Denv.class.path=.:/usr/java/jdk1.8.0_101/lib/dt.jar:/usr/java/jdk1.8.0_101/lib/tools.jar -Dapplication.home=/usr/java/jdk1.8.0_101 -Xms8m31940 Bootstrap -Djava.util.logging.config.file=/usr/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogM ...
Java反编译工具在Eclipse下可以选择Eclipse-Class-Decompiler插件, 他是集成了很多工具,有jd,jad,crf等。Java反编译工具
参考链接:Eclipse-Class-Decompiler https://www.eclipse.org/community/eclipse_newsletter/2017/february/article8.phpgithub下载地址 https://github.com/cnfree/Eclipse-Class-Decompiler/releases/download/v2.10.0/eclipse-class-decom ...
Eclipse中tomcat service设置选择window ----show view---services可以看到服务的面板双击tomcat进入配置界面Service Locations(Specify the server path (i.e. catalina.base) and deploy path. Server must be published with no modules present to make changes.)选项变灰色无法更改配置。若要更改,则先把tomcat下的所有項目移除。并右击,clean...之后方可设置。。。启动后将又变为黑色。
默认选项为: ...
1、版本问题MySQL 5.6.5之前版本不支持多条DEFAULT CURRENT_TIMESTAMP和ON UPDATE CURRENT TIMESTAMPNote that since MySQL 5.6.5, the DATETIME data type also has automatic initialization and automatic update feature. In addition, the DEFAULT_CURRENT_TIMESTAMP and ON UPDATE CURRENT TIMESTAMP attributes can be applied to ...
一、下载Tomcat7源码
从官网上下载Tomcat源码, http://mirror.bit.edu.cn/apache/tomcat/tomcat-7/v7.0.70/src/apache-tomcat-7.0.70-src.zip
下载之后,将源码解压后重名为tomcat-src,放在E盘的tomcat7目录下.
二、安装Ant
因Tomcat源码需要ant编译,所以需要安装Ant,从官网下载后解压,并配置环境变量即可.