即使Alex的解决方案 有效 ,我也不相信仅包含2个依赖项(
Actuator和
CloudContext)就能够执行一项 *** 作。相反,我结合了他的答案并修改了我的代码,以执行我想要的 *** 作。
因此,首先,使用和执行代码 至关重要 。我有以下处理重启的端点方法:
new Thread()``setDaemon(false);
val restartThread = Thread { logger.info("Restarting...") Thread.sleep(1000) SpringMain.restartToMode(AppMode.valueOf(change.newMode.toUpperCase())) logger.info("Restarting... Done.")}restartThread.isDaemon = falserestartThread.start()
该
Thread.sleep(1000)不是必需的,但我希望我的控制器输出实际上重新启动应用程序前视图。
SpringMain.restartToMode具有以下内容:
@Synchronized fun restartToMode(mode: AppMode) { requireNotNull(context) requireNotNull(application) // internal logic to potentially produce a new arguments array // close previous context context.close() // and build new one using the new mode val builder = SpringApplicationBuilder(SpringMain::class.java) application = builder.application() context = builder.build().run(*argsArray)}
凡
context与
application来自
main在启动应用程序的方法:
val args = ArrayList<String>()lateinit var context: ConfigurableApplicationContextlateinit var application: SpringApplication@Throws(Exception::class)@JvmStatic fun main(args: Array<String>) { this.args += args val builder = SpringApplicationBuilder(SpringMain::class.java) application = builder.application() context = builder.build().run(*args)}
我不确定这是否会引起任何问题。如果有,我将更新此答案。希望这对其他人有帮助。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)