7.11
条件查询时,如果有时间条件必须统一一下日期语言。
例:to_char(a.create_Date,'yyyy-MM-dd') =to_char(#{createDate},'yyyy-MM-dd')
7.24
svn检出的项目报classNotFount异常时;
在项目的proprites选项中,将java Compiler中的building的Abort build when error 的勾去掉,然后重新启动 Tomcat即可
7.26
查看本机IP地址:在cmd界面中输入ipconfig/all回车就可以看到了
7.30
CKfinder上传图片缩略图问题
项目里CKFinder要求上传的图片大小不缩略
CKfinder.xml配置中的<imgWidth>16000</imgWidth><imgHeight>12000</imgHeight>里面的数值调大些就可以了
9.6
jbox关闭子页面刷新父页面
window.parent.frames[i].location.href="${ctx}/workorder/works/index";
i就是代表第几个iframe;

11.15
修改某个表中字段的类型sql
alter table m_rel_userhouse rename column userid to useridold;

alter table m_rel_userhouse add (userid varchar2(64));

update m_rel_userhouse set userid = useridold;

alter table m_rel_userhouse drop column useridold;