
Web开发
iteye_11231
这个作者很懒,什么都没留下…
展开
-
myeclipse 6.0 注册码
myeclipse 6.0 注册码 过期时间2012年 user:googlebibaiduhao Serial:tLR8ZC-855575-67547956337287439 user:baidubigooglehao Serial:oLR8ZC-855575-6754795423520224原创 2010-06-29 09:16:35 · 105 阅读 · 0 评论 -
apache2.0和tomcat的整合
思科技术论坛's Archiver 思科技术论坛 » web服务器 » apache2.0和tomcat的整合无忧 发表于 2009-4-19 19:53apache2.0和tomcat的整合Linux下apache2.0和tomcat的整合1.所需软件 Apache安装程序:httpd-2.0.63.tar.gzTom...原创 2010-07-02 15:05:11 · 151 阅读 · 0 评论 -
spring integration summary
2013-07-05 09:35:21 · 100 阅读 · 0 评论 -
maven 配置例子
[code="java"] 4.0.0 com.aa.xx demo pom 0.0.1-SNAPSHOT demo demoApplication http://www.xx.com common core static-data messaging confirmation integration-tes...2013-08-07 13:24:52 · 139 阅读 · 0 评论 -
JMX 与Tomcat 集成
set "JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=true -Dcom.sun.m...原创 2013-08-13 21:31:22 · 103 阅读 · 0 评论 -
spring ckeditor and prettify sample
POM.XML[code="java"] org.springframework spring-core ${spring.version} org.springframework spring-web ${spring.version} org.springframework sp...2013-09-06 18:23:15 · 128 阅读 · 0 评论 -
JDOME 特殊字符过滤
如果是因为这些特殊的控制字符,可以这样替换一下xmlContent.replaceAll("[\\x00-\\x08\\x0b-\\x0c\\x0e-\\x1f]", "")2013-02-27 13:14:25 · 104 阅读 · 0 评论 -
删除重复记录的高效SQL
删除重复记录的高效SQL:delete from student pdi where pdi.rowid in (select t1.rowid FROM student t1, (select t.s_no, max(t.id) max_id from student t group by t.s_no having count(*) > 1) t2 where t1.s...2014-11-07 11:55:17 · 176 阅读 · 0 评论 -
VO与PO之间相互转换
转换基类: [code="java"]public abstract class BaseConverter { private static Logger logger = LoggerFactory.getLogger(BaseConverter.class); /** * 值对象与域对象之间属性复制 * * @...2014-11-13 13:55:29 · 1989 阅读 · 0 评论