当前位置:   article > 正文

同一台机器上运行多个dubbo项目报错_dubbo] failed to create file store cache. local fi

dubbo] failed to create file store cache. local file cache will be disabled

springboot 微服务在同一台机器上运行多个dubbo项目,报错如下:Failed to create file store cache. Local file cache will be disabled. Cache file name
在这里插入图片描述

解决方案:

解决办法是在SpringBoot启动类中加入如下代码,修改dubbo的缓存文件为jar包所在的位置:

@EnableDubbo
@SpringBootApplication
public class DataApplication {

public static void main(String[] args) {

    ApplicationHome home = new ApplicationHome(DataApplication.class);
    File jarFile = home.getSource();
    String dirPath = jarFile.getParentFile().toString();
    String filePath = dirPath + File.separator + ".dubbo";
    System.out.println(filePath);

    System.setProperty("dubbo.meta.cache.filePath", filePath);
    System.setProperty("dubbo.mapping.cache.filePath",filePath);

    SpringApplication.run(DataApplication.class, args);

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/165904
推荐阅读
相关标签
  

闽ICP备14008679号