i have a Java Web Application in my Server System and i access it from client side by its ip and port (192.168.1.100:80).
Is the possible to client (JSP) stay at reboot of system and when device restarted then it redirect to login page ?
here my below code is reboot the system by using reboot buttom
of GUI, but after the page is going to blank and we again search the ip.
Process reboot = Runtime.getRuntime().exec("reboot");
reboot.waitFor();