liunancun

Results 9 comments of liunancun

@VampireAchao 还是要用数据库的主键生成,只是很多插入的对象是查询出来的,带了之前的主键,好多地方都要清空主键再插入不方便,代码写起来也不优雅

这个应该是MetricsCollectController代码里面的BUG 在addMetricsConfigToMap方法里面直接 configMap.put(parameters.get(Constants.METRICS_PORT), parameters.get(Constants.METRICS_PROTOCOL)); 导致configMap的长度为1,实际值是{null,null} 导致searchService方法里面的 if (configMap.size()

@duoduobingbing I have 2 layers here th:each data model ![image](https://user-images.githubusercontent.com/12378933/184879298-6858d21b-5d56-45a6-9315-00e4debaf25b.png) ![image](https://user-images.githubusercontent.com/12378933/184879198-856a0b92-032e-4105-8d57-1198a212d7ba.png) Input count should be 1 2 3 Operates in a pure Java environment

@chuntaojun 配置nacos.config.remote-first=true也没有用 application.properties配置为: nacos.config.server-addr=192.168.99.214:8848 nacos.config.remote-first=true name=zhangsan Nacos上的hello.properties配置为: name=lisi 测试代码为: @SpringBootApplication @RestController @NacosPropertySource(dataId = "hello.properties") public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } @NacosValue("${name}") private String...

nacos.config.server-addr=192.168.99.214:8848 nacos.config.data-id=hello nacos.config.type=properties nacos.config.bootstrap.enable=true nacos.config.remote-first=true name=zhangsan 改成这样可以了,这种方式比使用注解多配置了很多东西吗?没有默认配置 像nacos.config.type,一开始没配置启动直接报错了

@xuxueli 大佬,这个线程池的问题有办法解决吗?之前版本可以用setJobLogFileName规避,新版本都没办法规避了

It is normal in version 2.7, but there is a problem in version 3 or above. Does it still not support Dubbo3?