fastjson2
fastjson2 copied to clipboard
[FEATURE] apt codegen提供debug选项
Annotation定义
@Retention(RetentionPolicy.RUNTIME)
public @interface JSONCompiled {
boolean debug() default false;
}
- 配置
@JSONCompiled(debug=true)
class Bean {
public int id;
}
- 效果 将codegen的代码用java.txt的方式输出,方便看生产代码的逻辑