我已经浏览了许多链接,如@RefreshScope和/或refresh not working和Spring Boot 2:动态刷新属性not working,但仍然有些东西对我不起作用。
我开发了spring云配置服务器
当我击中
发布==
我得到了回应
[“config.client.version”]
看起来它不知何故没有加载更改的属性
pom。xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>user-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>user-service</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>2020.0.2</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-circuitbreaker-resilience4j</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
PropertyAccessBean。java:
@Component
@ConfigurationProperties(prefix="property-file")
public class PropertyAccessBean {
private String name;
private String description;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
alue.java:
public class PropertyAccessValue {
private String name;
private String description;
public PropertyAccessValue(String name, String description) {
this.name = name;
this.description = description;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
return "PropertyAccessValue{" +
"name='" + name + '\'' +
", description='" + description + '\'' +
'}';
}
}
用户控制器。java:
@RestController
@RequestMapping("/users")
@RefreshScope
@Slf4j
public class UserController {
@Autowired
private UserService userService;
@PostMapping("/")
public User saveUser(@RequestBody User user) {
log.info("Inside saveUser of UserController");
return userService.saveUser(user);
}
@GetMapping("/{id}")
public ResponseTemplateVO getUserWithDepartment(@PathVariable("id") Long userId) {
log.info("Inside getUserWithDepartment of UserController");
// return userService.getUserWithDepartment(userId);
// return userService.getUserWithDepartmentWithFeign(userId);
return userService.getUserWithDepartmentWithFeignAndResilient4J(userId);
}
@Autowired
PropertyAccessBean propertyAccessBean;
@GetMapping("/readkey")
public PropertyAccessValue accesPropertyFile(){
return new PropertyAccessValue(propertyAccessBean.getName(),
propertyAccessBean.getDescription());
}
}
独自创立属性:
spring:
cloud:
config:
enabled: true
uri: http://localhost:9296
application.yml:
server:
port: 8002
spring:
application:
name: user-service
resilience4j:
circuitbreaker:
instances:
department:
register-health-indicator: true
ring-buffer-size-in-closed-state: 5
ring-buffer-size-in-half-open-state: 3
wait-duration-in-open-state: 10s
failure-rate-threshold: 50
record-exceptions:
- org.springframework.web.client.HttpServerErrorException
- org.springframework.web.client.ResourceAccessException
- java.util.concurrent.TimeoutException
- java.io.IOException
management:
endpoints:
web:
exposure:
include: refresh
endpoint:
health:
show-details: always
经过10个小时的疯狂调试,我不得不将yml替换为属性文件,它开始工作。
我不知道为什么yml无法接受这些更改,这肯定是一个bug!。
应用属性
spring.cloud.config.enabled=true
spring.cloud.config.uri=http://localhost:9296
management.endpoints.web.exposure.include=*
management.endpoint.health.enabled=true
server.port=8002
spring.application.name=user-service
resilience4j.circuitbreaker.instances.department.register-health-indicator=true
resilience4j.circuitbreaker.instances.department.ring-buffer-size-in-closed-state=5
resilience4j.circuitbreaker.instances.department.ring-buffer-size-in-half-open-state=3
resilience4j.circuitbreaker.instances.department.wait-duration-in-open-state=10s
resilience4j.circuitbreaker.instances.department.failure-rate-threshold=50
resilience4j.circuitbreaker.instances.department.record-exceptions=org.springframework.web.client.HttpServerErrorException
以下是回复
[
"property-file.name",
"config.client.version",
"property-file.description"
]
错误在于引导。属性文件实际上是YAML,而不是属性文件。有关属性文件格式,请参阅文档。您的文件等效于以下内容:
spring=
cloud=
config=
enabled=true
uri=http://localhost:9296
因此,此文件没有将sping.cloud.config.enabled
设置为true
,而是将一些名为的属性设置为启用
,该属性可能未使用。
我正在尝试使用spring boot和hibernate。当我使用存储库时,它工作得很好,但我正在尝试使用Hibernate会话来创建DAO,而这个DAO不是事务的一部分。 这是测试代码: 应用Java语言 UserBusinessImpl。java: 用户存储库。Java语言 用户DAO: 当我尝试getCurrentSession()时,它抛出了一个错误。openSession()与我的事务分
我试图通过遵循这里的教程,使用Spring boot在Java中创建一个RESTful应用程序。我想修改它,以便可以从URL中提取标识符,并使用它来服务请求。 所以
升级到Spring Boot 2x后,我在绑定一些列表时遇到了问题。代码在Spring 1中起作用。现在它在启动时抛出一个绑定错误。这是我的申请表。yml。。。 这是我的组件类... 这是嵌套对象。。。 当我试图逃跑时,我得到了... 申请无法启动 说明: 无法绑定“aws”下的属性。地理映射到java。util。列表: 行动: 更新应用程序的配置 还有其他人遇到过同样的问题吗?解决方案?建议?
我在本地系统上创建了一个带有Rest控制器和Oracle的spring boot应用程序,通过IDE它运行良好,mvn build was fine包也很好,但如果我将其作为可执行jar运行,我会得到以下错误。我有申请表。我提供的所有spring的属性。数据源,但这里我得到了错误。请告知。 这是我的pom.xml: 我正在尝试Spring Boot并尝试将其作为可执行的jar运行。
我目前正在尝试编写一个Spring Boot启动器,它将使用API网关自动验证我们的微服务,并在所有传出请求(针对网关)的标头中包含访问令牌。 我正在创建一个RestTemboard bean并为其提供我们的自定义拦截器,但我的问题是,通过这样做,我阻止其他团队(将使用此启动器)使用他们自己的RestTemboard配置,因为他们必须定义导致多个bean存在的相同bean。 是否有其他方法可以拦截
我目前正在开发一个以Spring Boot为后端的Angular 4应用程序。我使用Maven来构建如中所述配置的项目https://blog.jdriven.com/2016/12/angular2-spring-boot-getting-started/ 我现在想用其他语言翻译这个应用程序。我看着http://www.baeldung.com/spring-boot-international