- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 application.properties 文件有问题,它不是我的 war 文件的一部分。我想创建一个可以在运行时更改 application.properties 值的应用程序。我的属性文件将是我们将在服务中使用的 bean。
以下 PoC 类别:
@Configuration
@Slf4j
public class ServiceReaderConfiguration {
@Bean
@Scope(value = ConfigurableBeanFactory.SCOPE_PROTOTYPE)
ServiceOutputProperties serviceProperties() {
log.info("create serviceProperties");
return new ServiceOutputProperties();
}
@Bean
ServiceOutput serviceOutput() {
log.info("create serviceOutput");
return new ServiceOutput(serviceProperties());
}
}
服务属性
@Configuration
@ConfigurationProperties(prefix = "prefix")
@Setter
@Getter
public class ServiceOutputProperties {
private int param;
}
服务输出属性
@Slf4j
public class ServiceOutput {
private ServiceOutputProperties serviceOutputProperties;
public ServiceOutput(ServiceOutputProperties serviceOutputProperties) {
log.info("creating serviceOutputProperties");
this.serviceOutputProperties = serviceOutputProperties;
}
public int printValueFromFile() {
int param = serviceOutputProperties.getParam();
return param;
}
}
Controller
@RestController
@RequestMapping("/api")
public class ControllerConfiguration {
@Autowired
private ServiceOutput serviceOutput;
@GetMapping("/print")
public ResponseEntity<Integer> postValueFromPropertiesFile() {
return ResponseEntity.ok(serviceOutput.printValueFromFile());
}
}
应用程序属性
prefix.param=2
放在 Catalina 文件中的 XML 文件
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Environment name="spring.config.location"
value="file:/home/marcin/tomcat/application.properties"
type="java.lang.String"/>
</Context>
我正在构建没有我想在运行时修改的应用程序属性文件的 war 包。包正在 tomcat 上部署。我想要实现的是修改属性文件并在运行时使用 Controller 显示文件中的更改值,而无需重新加载应用程序。
在此先感谢您的帮助。
最佳答案
您可以使用 spring cloud 的刷新范围功能来实现它,考虑以下情况:
@ConfigurationProperties(prefix = "prefix")
@PropertySource("path to properties file, you can inject it as property ${spring.config.location}")
@RefreshScope
public class ServiceOutputProperties {
private int param;
//getters & setters
}
稍后您可以通过两种方式像这样刷新 beans:通过向端点 /actuator/refresh
发送 POST 请求(如果您使用的是 spring-actuator)或通过注入(inject) RefreshScope
bean 并调用 refreshAll()
方法(或 refresh(String name)
如果你想刷新单个 bean)。
您可以使用 WatchService API创建监听器,它将在每次文件修改时调用上述方法之一。
刷新范围功能包含在 spring-cloud-context 中所以我相信它足够轻
关于java - 如何在运行时重新加载不属于 jar 的 application.properties,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53762482/
我正在运行一个带有 while 约束的 SQL 查询,其中包含一些“id”。例如: SELECT table.id FROM TableOne table WHERE table.id IN (1,
假设我有以下类型声明: declare type Point2D = { x: number, y: number } 我从服务器获取一些数据并得到以下信息: const response = { x
根据 Angular 文档,Angular 的指令有 3 种类型: 组件 结构化 属性 根据以下官方链接:https://angular.io/guide/attribute-directives#d
在我正在处理的 Spring Boot 应用程序中,我有一个未注释为 bean (@Component) 的类,但包含一个 Autowiring 字段: public class One{ @
我有一个问题,我正在学习 swift 编程,我已经学会了毫无问题地处理表格和集合,包括使用 alamofire 的 cosumo 服务,但我遇到了一个问题,我在个性化表格 View 中有一个集合单元格
我已经在我们办公场所的实时服务器上配置了 TFS。 现在,我们可以访问它,即 windows 域 用户/事件目录 用户但是当我把我的用户名密码 给别人时我们的办公场所,并要求他通过 Web 链接从 v
我的 .plist 的 UIStatusBarHidden 是 false,所以我的应用程序不显示 iOS 状态栏。 连接到自定义 UIView 顶部的 UI 元素在 iPhone 6/7/8 设备上
执行某些 SP 时开始出现以下错误。与此错误相关的代码非常简单,将#temp 表连接到真实表 错误全文: Msg 605, Level 21, State 3, Procedure spSSRSRPT
我有一段代码调用 LogonUser(),然后调用 CreateProcessAsUser()。在 Win32 中,生成的进程属于属于 LOCAL 组的用户(例如,TESTDOMAIN\user1)。
Xcode 6.1 在组件安装完成后出现错误。 Xcode 安装程序是从其他 mac 复制的。请帮助我如何解决 dyld_sim 错误....谢谢 /Applications/Xcode.app/Co
我是一名优秀的程序员,十分优秀!