Top "Web.xml" questions

The web.

What does the servlet <load-on-startup> value signify

I am getting a bit confused here. In our application we are having a few servlets defined. Here is the …

jakarta-ee servlets web.xml
Session TimeOut in web.xml

I am trying to understand the real purpose of session configuration in Web.xml for session timeout. <!-- Session …

java jakarta-ee servlets web.xml
How to configure welcome file list in web.xml

I have this in my web.xml document. I am trying to have a welcome list so I dont need …

jsp servlets web.xml welcome-file
How to specify the default error page in web.xml?

I am using <error-page> element in web.xml to specify the friendly error page when user encounters a …

java jsp servlets web.xml custom-error-pages
What is the significance of url-pattern in web.xml and how to configure servlet?

I have manually configured web.xml for my application. Now, I'm facing issues while running my application. I'm trying to …

java servlets web.xml url-pattern servlet-mapping
Difference between / and /* in servlet mapping url pattern

The familiar code: <servlet-mapping> <servlet-name>main</servlet-name> <url-pattern>/*</url-pattern> </…

servlets web.xml url-pattern
Loading context in Spring using web.xml

Is there a way that a context can be loaded using web.xml in a Spring MVC application?

java spring-mvc web.xml
SEVERE: ContainerBase.addChild: start:org.apache.catalina.LifecycleException: Failed to start error

I encountered this error when I tried to run my application in Tomcat. I already checked the version of tomcat …

java tomcat web.xml illegalstateexception
What is web.xml file and what are all things can I do with it?

The web.xml Deployment Descriptor Elements in Oracle's BEA WebLogic Server 8.1 Documentation pretty much sums up each element in a …

web-applications web.xml
No WebApplicationContext found: no ContextLoaderListener registered?

I'm trying to create a simple Spring 3 application and have the following files. Please tell me the reason for this …

spring spring-mvc web.xml dispatcher