Servlet is a Java application programming interface (API) running on the server machine which can intercept on the requests made by the client and can generate/send a response accordingly.

learn more… | top users | synonyms

1
vote
2answers
71 views

Correct implementation for background task execution in web application?

I have a simple servlet which merely serves some cached data back to the user. I also have a background thread which runs at fixed intervals to refresh the cached data. Is this a reasonable ...
2
votes
1answer
455 views

Tomcat/JSP/servlets web-project refactoring advices needed

I am a newbie to JSP/servlets/java, studying it atm. So I've made my first project. It's a simple sort of array. Array (in fact I used ArrayList) is stored in default_list.txt file on server, all ...
1
vote
2answers
279 views

Is there a more efficient way of loading views within my java app?

I'm building a web application in Java. I'm new to Java, so before I get too far into this... I'm hoping to take advantage of all the experience here and learn the problems with this setup. My ...