西东
西东
欢迎尝试 folkmq-pro 模块下,已添加类:MqWatcherMetrics
JSONReader.Context::config(..) 和 JSONWriter.Context::config(..) 它们内部是 `|=` 操作,能不能出一个 `&=` 的操作?
我在 solon 官网,也添加了收录: https://solon.noear.org/article/690
网站-》Java项目-》添加 Java 项目。。。这里: * 能不能加个 “Solon 项目” 的选择? * 或者把 "Spring_boot 项目",换成 "Jar 项目"(或 "Fatjar 项目")。 我们 Solon 的用户总是包怨说,“我明明是用 Solon 开发的,却要选 Spring_boot 项目”。。。从技术上看,这里的需求应该是可自启动的 "Fatjar" 包吧?:)  希望能更公平的对待 java 项目。比如 vert.x,...
https://gitee.com/opensolon/solon
用于对标 “Spring Authorization Server”
可以一起协作对接一下:)。。。项目是这个: https://solon.noear.org/
复现代码: ```java public class TypeTest { @Test public void test() throws Throwable { Bean data = new Bean(); data.value = 12L; String output = JSON.toJSONString(data, JSONWriter.Feature.WriteClassName); System.out.println(output); //{"@type":"features.type0.TypeTest$Bean","value":12L} assertEquals("{\"@type\":\"features.type0.TypeTest$Bean\",\"value\":12}", output);...