Java技术
摘要: 迭代查询
connect by prior start with
阅读全文
摘要: 1. 复制表结构及其数据:
create table table_name_new as select * from table_name_old
阅读全文
摘要: nohup ./startWebLogic.sh &
tail -f nohup.out
阅读全文
摘要: select sysdate,to_char(sysdate+1/24/60,'yyyy-mm-dd HH24:MI:SS') from dual; --加1分钟
阅读全文
摘要: iOS开发,PhoneGap,Titanium
阅读全文
摘要: 导出导出数据及数据结构:
在控制台 mysql/bin
Export: mysqldump -u root -p DATABASE >fil2.sql
Import: mysql -u root -p DATABASE
阅读全文
摘要: 1. 是用session实现DAO,必须要在最后关闭session,不然会导致连接池链接溢出
2.可以使用 set breakAfterAcquireFailure =false 来规避这个问题。
阅读全文
摘要: Restrictions.gt --> great-than > 大于
Restrictions.ge --> great-equal >= 大于等于
Restrictions.lt --> less-than, < 小于
Restrictions.le --> less-equal <= 小于等于
阅读全文
摘要: WebService axis 计数器
阅读全文
摘要: /etc/profile
JAVA_HOME=/usr/share/jdk1.5.0_05
PATH=$JAVA_HOME/bin:$PATH
CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
export JAVA_HOME
export PATH
export CLASSPATH
source /etc/profile
阅读全文
摘要: tomcat和weblogic工程发布差异
阅读全文
摘要: Tomcat,Weblogic远程调试
阅读全文
摘要: java.lang.IllegalArgumentException: argument type mismatch异常。
阅读全文
摘要: struts-config.xml中action元素的attribute属性的意义
阅读全文
Full Java技术 Archive