亲宝软件园·资讯

展开

application.yml不生效

ls65535 人气:0

application.yml没有生效

这里配置了

<packaging>pom</packaging>

造成的,删除问题解决~

bootstrap.yml不生效,无法优先于application.yml文件加载

问题描述

由于最近项目需要打包成docker部署到测试服务器,公司统一使用一个nacos作为配置中心,一直不能加载bootstrap.yml文件报配置找不到。是由于没有加载nacos-config依赖。

加上这个依赖,要注意的是,springboot 版本 跟nacos-config 要对应 譬如 springboot版本是 2.x.x 的, nacos 的需要也是 2.x.x

		 <parent>
	        <groupId>org.springframework.boot</groupId>
	        <artifactId>spring-boot-starter-parent</artifactId>
	        <version>2.2.2.RELEASE</version>
        	<relativePath/>
   		 </parent>
		 <dependencies>
			<!--nacos配置中心-->
	        <dependency>
	            <groupId>com.alibaba.cloud</groupId>
	            <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
	            <version>2.2.1.RELEASE</version>
	        </dependency>
        </dependencies>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。 

加载全部内容

相关教程
猜你喜欢
用户评论