XMLHttpRequest示例
代码示例1234567891011121314var xhr = new XMLHttpRequest();var url = 'http://example.com';xhr.open('GET',url,true);xhr.onreadystatechange = function() { if (request.readyState !== 4) return; if (timeout) return; clearTimeout(timer); if (request.status === 200) { callback(request.responseText); } }xhr.send();
Dubbo Telnet命令参考手册
Dubbo 调用telnetDubbo2.0.5以上版本服务提供端口支持telnet命令
使用如:
telnet localhost 20880
或者:
echo status | nc -i 1 localhost 20880
telnet命令可以扩展,参见:扩展参考手册第6条。
status命令所检查的资源也可以扩展,参见:扩展参考手册第5条。
ls(list services and methods)
ls
显示服务列表。
ls -l
显示服务详细信息列表。
ls XxxService
显示服务的方法列表。
ls -l XxxService
显示服务的方法详细信息列表。
ps(print server ports and connections)
ps
显示服务端口列表。
ps -l
显示服务地址列表。
ps 20880
显示端口上的连接信息。
ps -l 20880
显示端口上的连接详细信息。
cd(change default service)
cd XxxService
改变缺省服务,当设置了缺省服务,凡是需要输入服务名作为参数的命令,都可以省略 ...
Jar 自动打包上传nexus的方法
1.设置nexus将相关repository的Access Settings -> Deployment Policy 设置成[Allow Redeploy]
2. 设置身份验证在maven配置文件conf/settings.xml添加身份验证信息
1234567<servers> <server> <username>admin</username> <password>admin123</password> <id>nexus-3rd</id> </server></servers>
注意:这里的id必须与pom.xml中distributionManagement/repository/id保持一致。
3.设置pom.xml中增加以下节点
123456<distributionManagement> <r ...
java连接Mysql数据库问题
java连接Mysql数据库问题
'0000-00-00 00:00:00' can not be represented as java.sql.Timestamp error
解决方案
在数据库连接url后加zeroDateTimeBehavior=convertToNull
示例如下:
jdbc:mysql://10.149.11.218:8066/orders?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
注意&转义的问题,在xml中写要用& 在properties中可以直接使用&
Hexo Initiation
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment
SVN设置忽略文件夹或文件
最简单的的方法设置Global ingore pattern
选项所在位置:TortoiseSVN->Settings->General
其中的值可匹配正则表达式,多个值之间以空格区分
Eclipse Project示例: 1*.class *.classpath target .setting *.prefs