- 浏览: 33729 次
- 性别:
- 来自: 深圳
最新评论
-
sljackson:
有用,很有用。
java调用webservice实例
文章列表
API文档:http://tool.oschina.net/apidocs/apidoc?api=jedis-2.1.0
github:https://github.com/xetorthio/jedis
1.redis的incr命令
SET connections 10
INCR connections => 11
INCR connections => 12
DEL connections
INCR connections => 1
当多个客户去操作connections时,由于INCR命令是原子操作,所以会保持数据的一致性。
2.redis的存储失效设置
Redis can be told that a key should only exist for a certain length of time. Thi ...
来源:http://odyniec.net/projects/imgareaselect/
Quick Usage Instructions
Download the plugin, unzip it, and copy the JavaScript and CSS files to your website/application directory. Load the files in the <head> section of your HTML document.
<head>
...
<link rel="styles ...
1.引入:jquery.autocomplete.min.js,jquery,js
2.自动完成代码:$('#element').autocomplete(url);
3.服务器段返回数据格式(/n划分每个元素):"abc/ndef/nghi"
https://code.google.com/p/json-editor-plugin/
1.在java web项目上右键->properties->MyEclipse->Web的Deployment项,选中JAR and place them in the /lib directory
在startup.sh开始处中增加如下内容:
declare -x CATALINA_OPTS="-server -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8788"
1、项目管理系统:http://kuai.xunlei.com/d/wtViAgI.2wBlSzlRcf4
2、自己动手写框架:http://kuai.xunlei.com/d/wtViAgLZ2gAUSTlR375
3、ASP.NET实战中国电信CRM:http://kuai.xunlei.com/d/wtViAgIA2gD3RDlR2e2
4、云计算中间件开发:http://kuai.xunlei.com/d/wtViAgKn2QCoQzlR050
5、云计算商城C2C项目:http://kuai.xunlei.com/d/wtViAgLj1gBJOjlRc89
6、ASP.NET实战小孔子 ...
常用前端开发工具合集
1.Firebug http://getfirebug.com/
最流行的前端开发工具
2.HttpWatch http://www.httpwatch.com/
集成在IE和Firefox上的监听HTTP和HTTPS的工具
3.Fiddler http://www.fiddler2.com/fiddler2/
Fiddler是一个记录你电脑和网络之间所有HTTP(S)请求的网络调试代理
4.HttpFox https://addons.mozilla.org/eu/firefox/addon/6647?lang=en-US
和HTTPWatch很类似的一个工具
...
原文:http://blog.csdn.net/brucezhang0/article/details/7633036
用beyond compare 比较 class 文件
windows下的官网下载地址:http://www.scootersoftware.com/download.php?zz=kb_moreformats_win
linux 扩展的官网下载地址:http://www.scootersoftware.com/download.php?zz=kb_moreformats_nix
点Download All ,下载完成后选择要导入的格式,建议全选好了
<html>
<head>
<title>客户端控制上传图像的类型和大小</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
以下是一个客户端控制file上传图片类型和大小的示例(注意:由于是客户端限制,所以用户可以绕过这个限制):
<script language="javascript">
...
1、抽象类中可以定义域(成员变量),普通方法,抽象方法
public abstract class TestA {
int num = 0;//域(成员变量)
public void add(){//普通方法
System.out.println("加法");
}
abstract int get();//抽象方法
}
2、非抽象子类继承抽象父类时,必须要重写抽象父类中的所有抽象方法(普通方法不用)
class TestB extends TestA{
@Override
public int get() {//子类重写的方法,可以 ...
要在jsp页面使用<s:iterator>标签来遍历list数组,是非常简单的一件事.
如果你在jsp页面加了条件查询,查询的结果也是装着相同对象的list,是否要在jsp页面写两个<s:iterator>循环呢,答案是不用的.
写两个<s:iterator>的做法:
//当页面加载时userList为空,执行<s:action>获取userList
<s:if test="null==userList">
<s:action name="userListAction" nam ...