Results 6 issues of QC

Currently there are three entities for openjdk (8, 8 GUI and 8 Web), I cannot search the Java class and method cross these JDK entities. So could you merge them...

docs/improvement

Add two CLI flags to enhance `gojson` - `nosort` don't sort fields of generated structs (default false) see issue #60 - `omitempty` add `omitempty` into field tag (default false)

Current the fields of output struct is sorted, it is not good for me to advanced process. If the fields order is same with original json format, it is more...

目前新建链接只能输入一个ip地址,在集群模式下,ip地址有多个,并且ip地址是会经常变化,在下一个连接的时候,无法保证原ip还能继续生效。 希望能支持输入多个ip或者domain,并且自动感知机器ip的变换,自动修改或者保存集群中所有机器的ip,保证下次链接能成功。

feature

在 `JetxGenerateApp.execute()` 和 `JetEngine.startPreCompileTask()` 中目前是逐个编译的,可以采用多线程编译加快速度。 ``` java ExecutorService pool = Executors.newFixedThreadPool(16); for (...) { pool.execute(...); } ```

enhancement

``` java public class Bean { public void method(); } ``` 模板调用 ``` ${bean?.method()} ``` 生成的代码如下: ``` java (bean == null) ? null : bean.method() ``` 会出现编译错误

bug