
J2EE
Jession-Ji
相信自己,成长的过程中动手永远比动口更重要。
展开
-
HttpServletResponse类的常用方法(学习笔记)
所有Servlet响应都实现ServletResponse接口。ServletResponse接口主要有以下方法:(1)从Servlet中可以通过getWriter方法取得PrintWriter对象,来输出字符数据。从Servlet中可以通过getOutputStream方法取得ServletoutputStream对象。ServletOutputStream既可以输出字符数据,也可以输出MIME原创 2005-10-13 16:16:00 · 3322 阅读 · 0 评论 -
如何用js实现jsp页面上多个html:multibox全选
function allselect(){try{var checkedcount=0;for(var i=0;i{if(form1.orgIds[i].checked)checkedcount++;}if(checkedcount==form1.orgIds.length){for(var i=0;i{form1.orgIds[i].checked=false;}}else{for(var原创 2006-07-10 13:52:00 · 2375 阅读 · 0 评论 -
Hibernate高级使用:查询返回自定义对象
Hibernate高级使用:原生SQL查询返回自定义对象列表原创 2010-11-19 13:54:00 · 10716 阅读 · 1 评论 -
Idea IDE调试器错误引起的问题
private boolean isLastCtfNeedReturn(SwCmpContract swCmpContract) { Set swCmpProcs = swCmpContract.getSwCmpProcs(); int qtyCtfNeedReturn = 0; for (SwCmpProc swCmpProc : swCmpPro原创 2012-06-16 19:11:14 · 1983 阅读 · 0 评论 -
关于Hibernate中 @ForceDiscriminator/@DiscriminatorOptions(force=true)的使用
原文参见:http://stackoverflow.com/questions/12199874/about-the-use-of-forcediscriminator-discriminatoroptionsforce-true当使用翻译 2014-08-12 18:12:39 · 1924 阅读 · 0 评论 -
At least one JAR was scanned for TLDs yet contained no TLDs
Tomcat 8.x1. conf/logging.properties 修改:# To see debug messages in TldLocationsCache, uncomment the following line:org.apache.jasper.compiler.TldLocationsCache.level = FINE2. 重启Tomcat,启动成功后转载 2016-12-23 12:16:39 · 2660 阅读 · 0 评论