我自学了Spring Cloud Config Server,并且在将属性注入bean时遇到了一些麻烦。
所以我有一个简单的Spring Boot Application作为配置客户端,仅用于测试:
@SpringBootApplication
@ConfigurationProperties
public class DemoApplication {
@Value("${greeting}")
static private String greeting;
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
System.out.println("The greeting is: " + greeting);
}
}
但系统打印:
The greeting is: null
检查env端点,我实际上发现"${greeting}"
属性在环境中:
profiles: [ ],
configService:https://github.com/mstine/config-repo.git/demo.yml: {
greeting: "Webhook"
},
configService:https://github.com/mstine/config-repo.git/application.yml: {
eureka.instance.hostname: "localhost",
eureka.instance.leaseRenewalIntervalInSeconds: 10,
eureka.instance.metadataMap.instanceId: "${vcap.application.instance_id:${spring.application.name}:${server.port:8080}}",
eureka.client.serviceUrl.defaultZone: "${vcap.services.service-registry.credentials.uri:http://127.0.0.1:8761}/eureka/",
foo: "barnyardAnimal"
},
请注意,在configService
中,有一个名为greeting
的属性,其值为"Webhook"
我是Spring Framework的新手,所以我想知道我是不是搞砸了什么?有人建议我也可以使用Environment
访问外部属性,但我没有找到太多关于如何使用它的教程。有什么想法?
=================================== UPDATE =========== =========================== 添加配置服务器的代码:
Application.java:
package io.spring.cloud.samples.fortuneteller.configserver;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
application.yml:
server:
port: 8888
spring:
cloud:
config:
server:
git:
uri: https://github.com/mstine/config-repo.git
答案 0 :(得分:0)
我认为您还需要创建和启动服务器,我没有看到代码
@SpringBootApplication
@EnableConfigServer
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
启用服务器后,客户端需要连接到服务器并询问服务器将为其存储的配置参数。该服务器需要存储将在其中存储值的.yml。
客户端代码需要与服务器通信并使用bootstrap.yml
询问特定值---
spring:
profiles:
active: northamerica
application:
name: koitoerclient
cloud:
config:
uri: http://localhost:8001
server:
port: 8002
您可以在github here中找到客户端和服务器代码的配置和示例,非常简单,因此您可以了解整个配置。
答案 1 :(得分:0)
据我所知,您已忘记添加
@EnableDiscoveryClient
在客户端应用程序的主要类上面
我这样做了,在类似情况下它对我有用
答案 2 :(得分:0)
您只是不能将属性作为静态字段注入。尝试将其注入某些@Component
答案 3 :(得分:0)
您需要将 class Solution:
"""
@param a: An integer
@param b: An integer
@return: The sum of a and b
"""
def aplusb(self, a, b):
# write your code here
while True:
a, b = a^b, (a&b)<<1
if a==0 or b == 0:
return a or b
添加到客户端应用程序的类路径中,以使其在其自动启动器配置中采用云配置。
spring-cloud-dependencies
答案 4 :(得分:0)
如果您使用的是本地存储库,则application.yml
应该如下所示:
server:
port: 8888
spring:
profiles:
active: native
cloud:
config:
server:
native:
searchLocations: file: --Path--