fastjson2 icon indicating copy to clipboard operation
fastjson2 copied to clipboard

[FEATURE] apt codegen提供debug选项

Open wenshao opened this issue 9 months ago • 0 comments

Annotation定义

@Retention(RetentionPolicy.RUNTIME)
public @interface JSONCompiled {
    boolean debug() default false;
}
  • 配置
@JSONCompiled(debug=true)
class Bean {
     public int id;
}
  • 效果 将codegen的代码用java.txt的方式输出,方便看生产代码的逻辑

wenshao avatar May 15 '24 00:05 wenshao