我想在登录应用程序时更新application.properties。
public class DemoApplication {
@Value("${spring.application.webServer}")
private String webServer;
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RequestMapping("/setProperty")
public String webServer() {
return webServer;
}
}
我想在调用setProperty端点时设置application.properties。是否可以使用Spring Boot!