Files
java-tutorials/spring-boot-runtime/src/main/java/com/baeldung/restart/RestartController.java
T
2019-11-01 09:24:05 +01:00

24 lines
557 B
Java

package com.baeldung.restart;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class RestartController {
@Autowired
private RestartService restartService;
@PostMapping("/restart")
public void restart() {
Application.restart();
}
@PostMapping("/restartApp")
public void restartUsingActuator() {
restartService.restartApp();
}
}