如何通过API设置application.properties运行时?

时间:2019-09-20 14:43:21

标签: java spring-boot application.properties

我想在登录应用程序时更新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!

0 个答案:

没有答案