摘要:
public class PropertyUtils { /** * 判断属性是否为null或"" * @param args * @return 是则返回true */ public static Boolean isEmpty(Object ...args){ for (Object arg : 阅读全文
摘要:
在使用nacos启动时报了以下错误 问题原因: 一般在启动时报错无非就是配置文件不对或者依赖不合适 这里他报了 endpoint is blank 端点为空 接着查看日志 他说nacos的配置中心的地址null 最后检查配置文件发现忘了加配置中心地址了........ 在bootstrap.yml中 阅读全文