Files
java-tutorials/spring-boot-runtime/src/main/java/com/baeldung/restart/RestartService.java
T

17 lines
391 B
Java
Raw Normal View History

2019-10-20 20:00:20 +05:30
package com.baeldung.restart;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.context.restart.RestartEndpoint;
@Service
public class RestartService {
@Autowired
private RestartEndpoint restartEndpoint;
public void restartApp() {
restartEndpoint.restart();
}
}