第四段经历
丁天才
这个作者很懒,什么都没留下…
展开
-
exist union 运用求大中小级联
所有item表中,大,中,小item.其中大的item是W039,中的事W002,小的事W003.然后item的betogroup指向上一级item的grou.求所有大的item和它所属的中,小item.select * from item smallitem where itemtype='W003' and exists( select '1' from item...原创 2013-07-31 11:33:12 · 101 阅读 · 0 评论 -
mybatis打印sql
用log4j在控制台输出,在web.xml中配置log4j.properties的路径,properties文件 log4j.rootLogger=DEBUG, Console #Consolelog4j.appender.Console=org.apache.log4j.ConsoleAppenderlog4j.appender.Console.layout=org.apac...原创 2013-07-31 18:55:11 · 75 阅读 · 0 评论 -
eclipse 布局混乱
楼上说的是编辑环境的默认布局设置。 eclipse设置默认窗口布局模式的方法是: 1、打开eclipse; 2、左键单击菜单条中的 Window 菜单; 3、选择第七个,即 Reset Perspective 。 此时你的eclipse窗口布局已经还原为默认模式,祝你学习愉快! ...原创 2013-07-31 19:29:58 · 580 阅读 · 0 评论 -
实现浏览器安全下载
这种方式比较安全。不会暴露服务器路径。csvFile为生成好的csvfile。[code="java"] InputStream ins=new FileInputStream(csvFile);//构造一个读取文件的IO流对象 BufferedInputStream bins=new BufferedInputStream(ins);//放到缓冲流里面 ...原创 2013-09-15 18:05:29 · 160 阅读 · 0 评论 -
apache proxy
ProxyRequests on Order deny,allow Allow from all deny from all ProxyPass /smart http://127.0.0.1:8080/smart ProxyPassReverse /smart http://127.0.0.1:8080/smart ...原创 2014-03-05 20:50:26 · 194 阅读 · 0 评论 -
maven 加非中心库jar
比如我要加载simplecaptcha jar包,我就先把simplecaptcha-1.1.jar放一个目录下,然后再这个目录下执行以下命令,这个jar就自动放到maven 库里了。mvn install:install-file -Dfile=simplecaptcha-1.1.jar -DgroupId=cn.com.mypack -DartifactId=simplecaptcha...原创 2013-09-22 13:56:57 · 101 阅读 · 0 评论 -
weblogic 整合hibernate valildation 2个问题的解决
1.java.lang.AbstractMethodError: [quote] 使用hibernate validator,在tomcat下部署没有问题,发布到weblogic(10)下面就报错了。在使用验证时有以下错误:java.lang.AbstractMethodError: getProviderUtilat javax.persistence.Persiste...原创 2013-09-23 21:23:38 · 274 阅读 · 0 评论 -
jsp:include 和page include 最大的区别
是jsp;inlucde 只能include jsp为后缀的文件,page include 可以include jspf,inc任意。这个是最关键的区别。其他区别网站上随便找。都是扯些人人都知道的。关键的就没人问答。...原创 2013-10-09 16:17:52 · 155 阅读 · 0 评论 -
ehcache 缓存策略
目前页面缓存策略有3种,FIFO, LRU, LFU. ehcache 中,我们可以在互联网电商系统网站中用memoryStoreEvictionPolicy="LFU" 如果在管理系统等内部系统中应该用memoryStoreEvictionPolicy="LRU"...原创 2014-10-30 13:44:45 · 223 阅读 · 0 评论