2017-07-26 11:19
@JFinal 我觉得得奇怪的是为什么会创建多次呢。明明交给spring完成bean的管理了。而且从上面的配置信息来看bean是使用默认的生命周期单例的哩
2017-07-25 12:19
@JFinal 不太清楚。确实之前是用2.2版本的,后来在pom改成3点多的。不过后来我把Pom多余的引入删除了,仓库的包也全都删了重导,项目也重要rebuild。还是会有问题。我先不让他调用db之类的find方法,直接index方法的renderjsp方法,也会提示jspRender的初始化失败之类的问题
2017-07-23 17:01
public Model findByIdExceptIsDel(Object idVal, String colNameYouWant) {
Table table = TableMapping.me().getTable(getClass());
String sql = "select " + null == colNameYouWant?"*"colNameYouWant + //这里拼凑sql:(
"from " + table.getName() +
" where isDeleted=0 and "+table.getgetPrimaryKey()[0]+"=?"; //这里只判断一个主键的情况
return this.findFirst(sql,idVal);
}@坚强的地瓜 @JFinal