gpt4 book ai didi

java - Spring Cloud 配置无法加载 native 配置文件,除非文件名是 application

转载 作者:行者123 更新时间:2023-11-30 06:32:15 32 4
gpt4 key购买 nike

我身上发生了一些奇怪的事情。我不知道如何解决 Spring Cloud 配置无法加载 native 或云配置文件的问题,除非它的文件名是“application.yml/application.properties”。

下面的代码是我的配置:

pom.xml:

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.2.RELEASE</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>micro-certification-config-center</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Dalston.SR2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

配置服务器:

@SpringBootApplication
@EnableConfigServer
public class ConfigServer {

public static void main(String[] args) {
SpringApplication.run(ConfigServer.class, args);
}

}

application.yml:

server:
port: 8000

spring:
cloud:
config:
server:
native:
search-locations: classpath:/shared
profiles:
active: native

共享文件夹结构体:
资源
-- 共享
-- -- application-dev.yml
-- -- sms-dev.yml

它看起来不错并且运行良好,没有错误,但是当我访问 http://127.0.0.1:8000/configCenter/dev/master 时,它只显示应用程序属性来源。

响应:

{
"name": "configCenter",
"profiles": [
"dev"
],
"label": "master",
"version": null,
"state": null,
"propertySources": [
{
"name": "classpath:/shared/application-dev.yml",
"source": {
"logging.level.org.springframework.security": "INFO",
"eureka.instance.prefer-ip-address": true,
"eureka.client.serviceUrl.defaultZone": "http://registry:8761/eureka/",
"security.oauth2.resource.user-info-uri": "http://auth-service:5000/uaa/users/current",
"spring.rabbitmq.host": "rabbitmq"
}
}
]
}

服务器控制台:

2017-08-24 22:34:08.055  INFO 30010 --- [nio-8000-exec-4] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@4a931797: startup date [Thu Aug 24 22:34:08 CST 2017]; root of context hierarchy
2017-08-24 22:34:08.062 INFO 30010 --- [nio-8000-exec-4] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2017-08-24 22:34:08.075 INFO 30010 --- [nio-8000-exec-4] o.s.c.c.s.e.NativeEnvironmentRepository : Adding property source: classpath:/shared/application-dev.yml
2017-08-24 22:34:08.075 INFO 30010 --- [nio-8000-exec-4] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@4a931797: startup date [Thu Aug 24 22:34:08 CST 2017]; root of context hierarchy

以上所有内容都显示“application.yml”文件仅有效。

有人可以帮助我吗?非常感谢!

最佳答案

外部配置可以帮助你。详细信息在这里:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html

您可以通过命令将此默认应用程序配置更改为外部应用程序配置,如指南中所示:

If you don’t like application.properties as the configuration file name you can switch to another by specifying a spring.config.name environment property. You can also refer to an explicit location using the spring.config.location environment property (comma-separated list of directory locations, or file paths).

$ java -jar myproject.jar --spring.config.name=myproject or

$ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties

或者在你的代码中你可以这样写:

     new SpringApplicationBuilder(Application.class)
.properties("spring.config.name:YOUR_EXTERNAL_CONFIG_FILE")
.build()
.run(args);
}

希望这有帮助。

关于java - Spring Cloud 配置无法加载 native 配置文件,除非文件名是 application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45864455/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com