The web.xml is the web deployment descriptor file of Java Servlet based web applications. It allows you to define, declare and configure the Servlet API based implementations in your web application, such as servlets, filters and listeners.
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, ...
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 {
...
12
votes
5answers
4k views
what is web.xml file and what all things can I do with it?
This oracle document pretty much sums up each element in a web.xml file. But I am also curios about below points:
1) Is there any configuration parameter which should be avoided like plague ?
2) ...
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
371 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 ...
9
votes
5answers
3k views
Static files in (Java) App Engine not accessible
The example documentation says that you simply need to place your files in war/ (or a subdirectory) and they should be accessible from the host (as long as they aren't JSPs or in WEB-INF). For ...
7
votes
5answers
3k views
Could not open ServletContext resource
This is quite similar question to one older but the solution did not work for me.
I have a WAR package.
In web.xml
<context-param>
...
7
votes
1answer
6k views
purpose of webAppRootKey?
Can somebody explain this entry in web.xml ? When it has to be used and why ?
<context-param>
<param-name>webAppRootKey</param-name>
...
7
votes
2answers
17k views
URL Pattern for servlet mapping in web.xml
I need a workaround with this URL mapping in web.xml to create URLs with a letter, followed by a "_" followed by any combination of alphanumeric characters.
I want to map a servlet to something like ...
6
votes
3answers
2k views
Maven: Customize web.xml of web-app project
I have a web application Maven project, and I want to customize the web.xml file depending on the Profile that is running. I am using the Maven-War-plugin, which allows me to define a "resources" ...
6
votes
1answer
2k views
JSF Facelets: Sometimes I see the URL is .jsf and sometimes .xhtml. Why?
Been try to learn JSF, and sometimes I see the URL is .jsf and sometimes is .xhtml. Can sometimes fill my knowledge, please? When I create a JSF using Facelet, the file extension is .xhtml, so where ...
6
votes
1answer
5k views
What is resource-ref in web.xml used for?
I'm just wondering when/why you would define a resource-ref element in your web.xml file?
I would have thought that it would be defined in your web/app server using JNDI and then look up the JNDI ...
6
votes
2answers
6k views
Custom 404 using Spring DispatcherServlet
I've set up web.xml as below. I also have an annotation-based controller, which takes in any URL pattern and then goes to the corresponding jsp (I've set that up in the -servlet.xml). However, If I ...
5
votes
2answers
284 views
How to specify order of filter mappings on GlassFish?
I read that the order in which filters are processed can be determined by the order in which they are declared in web.xml
But how to do this without web.xml, using for example the @WebServlet ...
5
votes
2answers
921 views
does red5 read tomcat-users.xml
I have been busy creating an app for Red5. Imagine what was my surprise when I tried to configure basic/digest authentication and I couldn't.
What struck me as strange is that I have a running tomcat ...
5
votes
1answer
2k views
Issue with JSF ViewExpiredException and multiple error-page tag definitions in web.xml
I'm working on a JSF web application in which I need to bring up a "Session Expired" page if the view expires, but a general technical error page for all others. The application only goes to the ...
5
votes
2answers
1k views
Changes to JBoss web.xml have no effect
I just added this to my web.xml on my JBOSS server. But it had no effect. I am still allowed to connect to ports that do not use bi-directional certificate exchange. Anyone have an ideas?
<!-- ...
5
votes
4answers
4k views
Can I turn off the HttpSession in web.xml?
I would like to eliminate the HttpSession completely - can I do this in web.xml? I'm sure there are container specific ways to do it (which is what crowds the search results when I do a Google ...
4
votes
3answers
116 views
Forcing 404 error for a specific url pattern from web.xml
I have a Java servlet that that handles requests to any url pattern on a Tomcat 6 server.
Now i want to block requests to a specific url pattern by issuing a 404 error. There is a part of the web ...
4
votes
1answer
243 views
Show setup after “Context initialization failed”
I'm looking now for a couple of days for the answer to the following question:
I have a Spring 2.5 webapplication and I want to show a certain setup screen if the initialization of the spring context ...
4
votes
1answer
522 views
security-constraint and welcome-file
In my web.xml I use something like this:
<security-constraint>
<web-resource-collection>
<web-resource-name>Block all</web-resource-name>
...
4
votes
2answers
1k views
Using properties in web.xml
I would like to control the settings in web.xml and using different once for different environments.
Is it possible to use a property, from a property file on classpath, in web.xml? Something like ...
4
votes
2answers
3k views
url-pattern and wildcards
While configuring the security constraints for a web-module's roles in J2EE application I'm having the following problem:
Application:
Giving a servlet named customersServlet, which receives two ...
4
votes
1answer
2k views
Spring application context : access web.xml context-params?
Greetings ,
Is there any way to get values from web.xml context-param into Spring context?
For example I define the value in web.xml as :
<context-param>
...
4
votes
1answer
180 views
How do you introspect web.xml from a servlet?
Is there a way for a servlet filter to get a list of all servlets and their mappings?
4
votes
2answers
7k views
Servlet URL pattern to match a URL that ends with a slash (“/”)
I'd like to specify a Servlet URL pattern to match a URL that ends with a slash ("/") and only a slash.
I understand that the pattern
/example/path/*
will match a URL of
...
4
votes
5answers
4k views
How to merge jsp pre-compiled web.xml fragment with main web.xml using Ant
We have the usual web.xml for our web application which includes some jsp and jsp tag files. I want to switch to using pre-compiled jsp's. I have the pre-compilation happening in the build ok, and ...
3
votes
1answer
116 views
Having two different servlets mapped on the same URL pattern
I encountered a J2EE project written by others. When I come to the web.xml, there are two different servlets mapped on the same URL pattern. I wonder the purpose of this approach. How exactly does ...
3
votes
1answer
146 views
How to configure web.xml for multiple login in a Struts2 web application?
I would like to develop a small test multi-login application using Struts2 and JSP. Basically:
The application should have welcome page (i.e. index.jsp) anyone can access.
This welcome page would ...
3
votes
1answer
155 views
GWT Development mode not working (configuring web.xml)
My application is working great in development mode (with GWT-RPC calls), however whenever I try to test it using production mode (by removing the ?gwt.codesvr=127.0.0.1:9997 part of the URL), it used ...
3
votes
1answer
136 views
Order of calling destroy() method on servlets/filters
I have a Java web app.
I can specify the order of calling init() method on servlets by the parameter in web.xml:
<load-on-startup>1</load-on-startup>
But, how can I specify the order ...
3
votes
2answers
279 views
Apache Tomcat cannot load web.xml - Connection timed out
If I try to deploy a webapp in Tomcat I get an exception. The web.xml seems correct to me so the problem should be somewhere else. Any help would be appreciated...
web.xml
<?xml version="1.0" ...
3
votes
2answers
503 views
freemarker cannot handle request for '/' on google app engine
I'm trying to get freemarker working under Google App Engine. I've gotten simple ftl template files working when requested directly however I'd like to have index.ftl work if available otherwise ...
3
votes
2answers
800 views
How to read context-param values from web.xml with a normal Java class
I know it it is easy to read the context-param values from web.xml with a Servlet.
But is it possible to read the value with a normal java class?
3
votes
1answer
663 views
Tomcat unable to find jsp in war file
I recently switched one of my static html files to a Spring controller that uses a JSP to render its view. I use jetty to test locally and local testing shows the page rendering fine. Upon deploying ...
3
votes
2answers
11k views
Tomcat 6 - The requested resource … is not available
I am trying to start developing with Java and the Stripes Framework. I have the following in my web.xml file
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app version="2.4" ...
3
votes
4answers
5k views
Referencing Environment Variables in web.xml
I'm pre-packaging a JSP web-app that relies on some file path settings found within web.xml. These settings are unknown at packaging time, because they reference a path the customer will set when ...
2
votes
1answer
135 views
How to dynamically configure the WebLogicCluster property outside of web.xml
I have a web application deployed as war file in weblogic 10.3.3. Now I want to make this application clusterable. For this I'm using the HttpClusterServlet from Weblogic as a load balancer. According ...
2
votes
1answer
47 views
Changing app.servlet.version does not affect web.xml
Is there an issue to set the app.servlet.version to 3.0 in the application.properties for grails 2.0?
I created a new app, added the line app.servlet.version=3.0 to the application.properties and ...
2
votes
2answers
62 views
How to include other configuration files in web.xml
I need to define many servlets, but I don't want to write the configuration all in the web.xml.
Can I define some servlet configuration files, and include them in web.xml? Or is there any other way ...
2
votes
0answers
64 views
Error with namespaces trying to configure JSF
I am getting the following error when trying to publish to my server. I have downloaded apache myfaces 2.0. I have also added these as a library in eclipse and added the project facet for JSF 2.0.
...
2
votes
1answer
216 views
Whitelist security constraint in web.xml
I'm using Tomcat for my Struts2 application. The web.xml has certain entries as shown below:
<security-constraint>
<web-resource-collection>
...
2
votes
1answer
189 views
Filter url pattern conflict in web.xml ?
I am working on a projec, the application is in j2ee and I have used ehcache for web page caching but due to the entries of filter it gives me an error content encoding error i have added following ...
2
votes
1answer
94 views
Web Filter blocking RichFaces
I create a filter and it works fine but my richfaces doesn't work correctly anymore, here is my web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app ...
2
votes
1answer
88 views
what if url pattern matches multiple servlets?
<servlet-mapping>
<servlet-name> s1</servlet-name>
<url-pattern> /abc </url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name> ...
2
votes
2answers
163 views
How to dynamically pass parameters in web.xml using weblogic 10.3.x?
I am trying to pass a JVM parameter for a variable configured in web.xml as a context-parameter using a -D notation when starting weblogic server. I have already tryied this same configuration using ...
2
votes
1answer
281 views
Class implementing ServletContainerInitializer in web.xml
Can you point to a class implementing the ServletContainerInitializer interface in the web.xml file or do you have to add a file under the META-INF/services/javax.servlet.ServletContainerInitializer ...
2
votes
1answer
343 views
web.xml 404 redirect to servlet, how to get the original URI?
I'm redirecting 404 errors to a servlet via the following in my web.xml.
<error-page>
<error-code>404</error-code>
<location>/notFound.do</location>
...
2
votes
1answer
113 views
test case by Junit, how to read web.xml
I'm trying to use web.xml in test case. but, I cannot...
@ContextConfiguration(locations={"file:src/main/webapp/WEB-INF/web.xml",
"/integration/restful/*.xml"}
public class RestfulTest { }
...
2
votes
1answer
118 views
Tomcat secure access
I have two Web Services (MyService and MyProtectedService). I want both going under the same port HTTPS but only the protected one to have client authentication (clientAuth=true).
All the security is ...