Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<servlet>
<servlet-name>MyServlet</servlet-name>
<servlet-class>com.acme.MyServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
public class BackgroundServlet extends HttpServlet implements Runnable {
private boolean isAlive = true;
public void init() throws ServletException {
new Thread(this).start();
}
public void destroy(){
isAlive = false;
}
public void run(){
while ( isAlive ){
//query database
try {
Thread.sleep(15000);
} catch ( InterruptedException ex) ){
}
}
}
}