摘要:
问题描述 近期开发项目,将Dubbo的配置全部外部化到动态配置中心。这里配置中心我使用的是Apollo。 @Configuration public class DubboConfig { @Bean public ConfigCenterConfig configCenterConfig() { 阅读全文
摘要:
问题背景 REST 项目使用protobuf 来加速项目开发,定义了很多model,vo,最终返回的仍然是JSON. 项目中一般使用 一个Response类, public class Response<T> { int code; String message; T data; } 如果需要分页, 阅读全文