2018-02-05 16:38
@JFinal 依赖注入主要的好处是方便在注入的时候注入代理类,从而实现 AOP,而 jfinal 有更加方便的 AOP 实现,也就没必要去支持。
有示例吗?
2018-01-25 16:04
* Db.tx(new IAtom(){
* public boolean run() throws SQLException {
* int result1 = Db.update("update account set cash = cash - ? where id = ?", 100, 123);
* int result2 = Db.update("update account set cash = cash + ? where id = ?", 100, 456);
* return result1 == 1 && result2 == 1;
* }});
是否只能支持 Db.update()等Db的方法?上文中自定义的xxx.dao.xxx是否不可使用?
2018-01-25 15:33
@JFinal 该方法用于API 执行并返回Json格式;但目前代码报错后不能获取异常(因为try..catch影响事务),不能执行返回错误时的JSon。有什么解决方案?