Top "Web.xml" questions

The web.

<security-constraint> <url-pattern> and the * character within web.xml

Useing Spring for Security, I can get the program running using the following code. <intercept-url pattern="/web/admin**/**" access="…

war web.xml jboss6.x url-pattern security-constraint
Using CLIENT-CERT for Tomcat without specifying a username

I am trying to make a Tomcat web application use client certificate authentication for incoming connections. Everything works fine when …

tomcat ssl web.xml client-certificates
load spring bean into a servlet

There are many documentations out there on how to achieve this task but I still couldn't resolve my issue. I'm …

java spring javabeans web.xml
There is no Action mapped for namespace / and action name hello

package com.tutorialspoint.struts2; public class HelloWorldAction{ private String name; public String execute() throws Exception { return "success"; } public String getName() { …

java configuration struts2 web.xml struts2-namespace
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 …

java jakarta-ee tomcat6 web.xml stripes
Spring : Exception starting filter springSecurityFilterChain

I am trying to write an application using Spring 3.1.2-Release. App server is Tomcat 7. When I start the server I …

java spring spring-security configuration-files web.xml
HOWTO handle 404 exceptions globally using Spring MVC configured using Java based Annotations

I am building a Spring 4 MVC app. And it is completely configured using Java Annotations. There is no web.xml. …

java spring spring-mvc http-status-code-404 web.xml
Multiple filters with same url mapping

Is it possible to use two filters that have the same url-mapping? <filter> <filter-name>TeeFilter</…

java servlets servlet-filters web.xml
Error in web.xml "Element -- is not allowed here"

I have a problem in my web.xml. I get the following errors element is not allowed here. Here is …

java xml spring spring-mvc web.xml
Set servlet as default home page in web.xml

I've a servlet registered in web.xml as below. <servlet> <servlet-name>Manager</servlet-name> <…

servlets web.xml welcome-file