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.
49
votes
9answers
7k views
Java web development, what skills do I need? [closed]
I want to learn, at least at a basic level, how to build Java web applications (coming from a .NET background).
Meaning, I would like to be able to build, deploy a simple CMS type application from ...
48
votes
1answer
7k views
Hidden features of JSP/Servlet
I am interested in your tricks etc used when writing JSP/Servlet. I will start:
I somewhat recently found out how you can include the output of one JSP tag in an attribute of another tag:
...
48
votes
4answers
15k views
What is the difference between JSF, Servlet and JSP?
Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
47
votes
3answers
6k views
Design Patterns web based applications
I am designing a simple web based application. I am new to this web based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, ...
40
votes
12answers
27k views
Servlet for serving static content
I deploy a webapp on two different containers (Tomcat and Jetty), but their default servlets for serving the static content have a different way of handling the URL structure I want to use (details).
...
37
votes
3answers
6k views
How do servlets work? Instantiation, session variables and multithreading
Suppose, I have a webserver which holds numerous servlets. For information passing among those servlets I am getting the servlet context and setting session variables. Now, if 2 or more users send ...
35
votes
10answers
756 views
Looking for a question that combines the understanding of few web technologies
I am teaching a web development course at a CS department, I wrote most of the final test by now, each question focus on a specific feature or a specific technology,
I wonder if you can think ...
33
votes
4answers
15k views
Tomcat VS Jetty [closed]
I'm wondering about the downsides of each servers in respect to a production environement. Did anyone have big problems with one of the features? Performance, etc. I also quicky took a look at the new ...
26
votes
5answers
3k views
Why does HttpServlet implement Serializable?
In my understanding of Servlet, the Servlet will be instantiated by the Container, his init() method will be called once, and the servlet will live like a singleton until the jvm is shut down.
i do ...
22
votes
9answers
17k views
Maven dependency for Servlet 3.0 API?
How can I tell Maven 2 to load the Servlet 3.0 API?
I tried:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
...
21
votes
3answers
33k views
How do you develop Java Servlets using Eclipse?
I would like to program Java servlets using Eclipse and I plan on deploying them using Tomcat. I think I can build the projects using Ant which is bundled with Eclipse. I have the standard Eclipse ...
20
votes
5answers
1k views
Is anyone still using JSTL?
I was about to pick up some Java web programming since not having touched Java for a couple of years. I picked up an fairly old O'Reilly book that was sitting on my bookshelf (Java Server Pages 3rd ...
19
votes
4answers
29k views
Can anyone explain servlet mapping?
I'm trying to write a web application using SpringMVC. Normally I'd just map some made-up file extension to Spring's front controller and live happily, but this time I'm going for REST-like URLs, ...
18
votes
4answers
13k views
How do you remove a Cookie in a Java Servlet
How do you remove a cookie in a Java servlet?
I tried this:
http://www.jguru.com/faq/view.jsp?EID=42225
EDIT: The following now works successfully it appears to be the combination of:
...
15
votes
2answers
17k views
JSF - get managed bean by name
I'm trying to write a custom servlet (for AJAX/JSON) in which I would like to reference my @ManagedBeans by name. I'm hoping to map:
http://host/app/myBean/myProperty
to:
...
15
votes
7answers
4k views
What is a lightweight, fast, java servlet container?
I have been writing a pure java web server specifically customized for a website I'm making. I've grown tired of reinventing the wheel though, and am now investigating moving over to java servlets. ...
14
votes
2answers
12k views
How to upload files in JSP/Servlet?
How can I parse an uploaded file using Apache Common FileUpload? I tried this:
FileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
List ...
14
votes
7answers
4k views
How can I map a “root” Servlet so that other scripts are still runnable?
I'm trying to build a Servlet that calls a JSP page similar to the following:
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException, ServletException {
...
14
votes
7answers
11k views
Is it possible to disable jsessionid in tomcat servlet?
Is it possible to turnoff jsessionid in the url in tomcat? the jsessionid seems not too search engine friendly.
Please Advise
Thanks
14
votes
2answers
7k views
Is there a url rewriting engine for Tomcat/Java?
How can we provide URL-Rewriting support for Tomcat/Java ?
mod_rewrite provides this functionality for Apache and can modify URLs even before they reach the handler (e.g. PHP). Is there a similar ...
14
votes
8answers
41k views
What does the servlet <load-on-startup> value of 0 (zero) signify
I am getting a bit confused here. In our application we are having a few servlets defined. Here is the excerpt from the web.xml for one of the servlets:
<servlet>
...
13
votes
5answers
6k views
Java EE 6: JSF vs Servlet + JSP. Should I bother learning JSF?
I am trying to get familiar with Java EE 6 by reading http://java.sun.com/javaee/6/docs/tutorial/doc/gexaf.html. I am a bit confused about the use of JSF.
Usually, the way I develop my Web App would ...
13
votes
12answers
3k views
When do you use a JSP and when a Servlet?
I have an application that sends the customer to another site to handle the payments. The other site, outside of the customer, calls a page on our server to let us know what the status is of the ...
12
votes
5answers
861 views
Why does POST not honor charset, but an AJAX request does? tomcat 6
I have a tomcat based application that needs to submit a form capable of handling utf-8 characters. When submitted via ajax, the data is returned correctly from getParameter() in utf-8. When ...
12
votes
6answers
22k views
How do you return a JSON object from a Java Servlet
How do you return a JSON object form a Java servlet.
Previously when doing AJAX with a servlet I have returned a string. Is there a JSON object type that needs to be used, or do you just return a ...
11
votes
2answers
347 views
Servlet mapping / vs /*
The familiar code:
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
...
11
votes
2answers
4k views
Get request URL from jsp
How can i get request URL from JSP.
If i use following code within JSP i get -
System.out.println("servlet path= " + request.getServletPath());
System.out.println("request URL= " + ...
11
votes
7answers
7k views
How can I get the HTTP status code out of a ServletResponse in a ServletFilter?
I'm trying to report on every HTTP status code returned from my webapp. However the status code does not appear to be accessible via the ServletResponse, or even if I cast it to a ...
11
votes
4answers
7k views
Unit testing a java servlet
I would like to know what would be the best way to do unit testing of a servlet.
Testing internal methods is not a problem as long as they don't refer to the servlet context, but what about testing ...
11
votes
2answers
23k views
Invalid <url-pattern> servlet mapping in tomcat 6.0
<servlet>
<servlet-name>myservlet</servlet-name>
<servlet-class>workflow.WDispatcher</servlet-class>
<load-on-startup>2</load-on-startup>
...
10
votes
3answers
372 views
How to add filters to servlet without modifying web.xml
I'd like the ability to modify/configure filters in a different way than web.xml. Here is a static configuration of 2 filters. I'd like the ability to have one filter statically configured and allow ...
10
votes
5answers
4k views
How to use Servlets and Ajax?
I'm very new to web apps and Servlets and I have the following question:
Whenever I print something inside the servlet and call it by the webbrowser, it returns a new page containing that text. Is ...
10
votes
4answers
15k views
Populating child dropdownlists in JSP/Servlet
Suppose I am having three dropdownlist controls named dd1, dd2 and dd3. The value of each dropdownlist comes from database. dd3's value depends upon value of dd2 and dd2's value depends on value of ...
10
votes
2answers
3k views
Logging response body (HTML) from HttpServletResponse using Spring MVC HandlerInterceptorAdapter
I am trying to log (just to console write now for simplicity sake) the final rendered HTML that will be returned by the HttpServletResponse. (i.e. the body) To this end, I am using the ...
10
votes
4answers
5k views
Should one call .close() on HttpServletResponse.getOutputStream()/.getWriter()?
I couldn't find an authoritative answer to this with some Googling. In Java servlets, one can access the response body via response.getOutputStream() or response.getWriter(). Should one call .close() ...
10
votes
11answers
2k views
Easy way to get started with JSF?
Does anyone know of a good way to get started with JSF for a servlets/JSP person?
I'm interested but not sure where to start!
Thanks,
10
votes
9answers
4k views
Best way to manage database connection for a Java servlet
What is the best way to manage a database connection in a Java servlet?
Currently, I simply open a connection in the init() function, and then close it in destroy().
However, I am concerned that ...
9
votes
4answers
101 views
Building a test suite in a large existing Java code base
I am working on a web application with an existing code base that has probably been around for 10 years, there are ~1000 class files and ~100,000 lines of code. The good news is that the code is ...
9
votes
4answers
2k views
Servlet 3.0 asynchronous
What's the diffrent between servlet 3.0 asynchronous feature against:
old servlet impl
doGet(request,response) {
Thread t = new Thread(new Runnable()
void run(){
// heavy processing
...
9
votes
3answers
9k views
How to use a filter in Java to change an incoming servlet request url?
How to use a filter to change an incoming request url :
From : "http://nm-java.appspot.com/Check_License/Dir_My_App/Dir_ABC/My_Obj_123"
To : ...
9
votes
4answers
11k views
How to implement pagination in Spring MVC 3
Is there any out-of-the-box, easy to implement, standard pagination component/tag-lib or code-sample available for pagination in Spring MVC?
Cheers
9
votes
2answers
6k views
Creating Java Web Service using Google AppEngine
I'm trying to create a simple web service application where I can retrieve a collection of strings and store them into a data store on the AppEngine server.
I have knowledge in Java and barely any ...
9
votes
3answers
5k views
What does WEB-INF stand for in a Java web application?
Most of the places on the internet say it stands for WEB INFormation.
I rather doubt it. The folder contains executables. Information is not a suitable name for it.
9
votes
5answers
9k views
Java Servlet : How to detect browser closing?
In my web app, when a user logs in, I add his Id to a vector of valid Ids in the servlet, when he logs out, I remove his Id from the vector, so I can see how many current users are active, if a user ...
9
votes
12answers
5k views
Any clever ways of handling the context in a web app?
In Java, web apps are bundled in to WARs. By default, many servlet containers will use the WAR name as the context name for the application.
Thus myapp.war gets deployed to http://example.com/myapp.
...
8
votes
2answers
246 views
Does SSL also encrypt cookies?
A review of SO doesn't categorically answer this question. It could be implied, but I would like to get it on the record specifically.
If SSL is active, it will encrypt HTTP header data, like ...
8
votes
4answers
1k views
Servlet 3 spec and ThreadLocal
As far as I know, Servlet 3 spec introduces asynchronous processing feature. Among other things, this will mean that the same thread can and will be reused for processing another, concurrent, HTTP ...
8
votes
5answers
2k views
Spring session-scoped beans (controllers) and references to services, in terms of serialization
a standard case - you have a controller (@Controller) with @Scope("session").
classes put in the session usually are expected to implement Serializable so that they can be stored physically in case ...
8
votes
2answers
884 views
Making GWT application crawlable by a search engine
I want to use the #! token to make my GWT application crawlable, as described here:
http://code.google.com/web/ajaxcrawling/
There is a GWT sample app available online that uses this, for example:
...
8
votes
4answers
7k views
WebSockets served by a Servlet Container
I was taking a look at WebSockets last week and made a few thoughts on how to implement the server side with the Java Servlet API. I didn't spend too much time, but ran into the following problems ...