2020-09-07 13:40

@Jieven 猪肥了。。。

2019-08-27 11:06

和Eova的定位有啥区别

2019-08-14 09:57

servlet同理的,这类问题

2018-05-29 11:06

@JFinal 此人目测为一女子~可培养也

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。有什么解决方案?

2018-01-25 10:49

https://jingyan.baidu.com/article/6525d4b180ee42ac7c2e9460.html
和Spring事务类似,,若要使用try..catch可以使用抛出runTime异常。