我重写了com.jfinal.core.ActionReporter类,因为jfinal框架中的这个类对日志不能满足我的需求,然后我在项目中新建了相同的包名和类名,在开发过程中,程序读取的是我自己写的类,但是打包发布以后,程序依然读取了jar包中的ActionReporter。怎么解决,求解。
但是你这个需求没有必要做替换,直接继承ActionReporter类覆写掉需要的方法,再去自己的JFinalConfig配置里的configConstant(Constants me) {me.setActionReporter(new MyActionReporter());即可