摘要:
classpath(如:src)下面META-INF/persistence.xml以下示例:eclipselink的 org.eclipse.persistence.jpa.PersistenceProvider cn.com.xx.jpa.po.xxx cn.com.xx.jpa.po.yyy hibernate + proxxol的 org.hibernate.ejb.HibernatePersistence cn.com.xx.jpa.po.xxx ... 阅读全文
摘要:
w3School:http://www.w3school.com.cn/jquery/index.asp//节点remove() 删除某个节点自身(包含子)节点.remove() ;append() 添加子节点节点.append(节点) ;appendTo() 添加到某节点上去节点.appendTo(节点) ;empty() 清空某个节点(移除子节点)节点.empty() ;//属性attr()节点.attr(属性名) 获取节点属性值; 节点.attr(属性名,属性值) 设置节点属性值css()节点.css(样式名) 获取节点样式值; 节点.css(样式名,样式值) 设置样式值text() 像 阅读全文
摘要:
原理:delFile.action所做的事就是输出一段如下代码 response.getWrite().write('fun1("xiaoming")');而在页面A有个script如下function fun1(who){ alert(who+' com on....');}则在页面A载入的时候... 阅读全文
摘要:
如下有data = {'userid':'xiaoming','sex':'f'}var p = '' ; for(var i in data){p += '&' + i + '=' + data[i] ; }alert(p); //输出 &userid=xiaoming&sex=f 阅读全文
摘要:
如查看8080是哪个进程占用的cmd命令netstat-nao|findstr"8080"最后一列显示的是进程号在任务管理器中根据进程号就可以看到进程了 阅读全文
摘要:
Map test = new HashMap() ; test.put("admin", "123456") ; test.put("xiaoming", "cv") ;String p = (String) Ognl.getValue("\"c:/file/idCard/\"+admin", test) ; System.out.println(p); 阅读全文
摘要:
示例://上传单个文件(若要上传没有id的文件需要修改源码)function uploadFile(id, url, data, successCallBack, errCallBack ,completeCallback){ $.ajaxFileUpload({ url: url , ... 阅读全文
摘要:
struts2配置result type=json 显示下载文件,加上text/html如:text/htmlannextruetrue不用struts2配置的response.setContentType("text/html") ; 阅读全文
摘要:
annextruefalse 阅读全文
摘要:
阅读全文