2017-05-29 23:09
@EATI001 j2cache挺好用的呀,当然JFinal官方提供集成插件可能更有说服力,osc社区上有人搞过。http://www.oschina.net/question/133989_228253。
2017-03-02 13:05
@qin 据具的模板暂没有,用css+div做布局 然后jquery做控制,效果就出来了
2017-03-02 12:20
送你个锦囊:
1、在youConfig中的常量(configConstant)方法下配置: me.setDevMode(PropKit.getBoolean("devMode", false));开启开发模式。
2、在youConfig的插件配置(configPlugin)方法配置:
if (PropKit.getBoolean("devMode", false)) {
arp.setShowSql(true);
}
开启sql输出。
注:PropKit.getBoolean("devMode")中的"devMode"草民是放外部的配置文件上的,所以得这么取,作者呢,随意就成。
2017-03-02 11:27
外层再套一层select*如:
String select = "select a2.*";
String form = " from(select a.id, a.number, a.name, a.desc, date_format(a.creat e_at, '%Y-%m-%d') createAt, " +
"(select count(id) amount from goods where dept_id = a.id) amount from goods a) a2 where 1=1";
String orderBy = " order by a2.create_at, a2.amount desc ";