java welcome-file_java – web.xml和/或过滤器返回welcome-file

我需要为特定功能配置我的Tomcat WAR,并且不确定它是否可以通过web.xml完成​​,或者我是否需要实现1个自定义过滤器,或者使用其他类型的hackery.

我的应用程序打包为myapp.war.因此,当它从本地Tomcat实例提供时,我可以通过访问http:// localhost:8080 / myapp来访问它.

非常简单,如果Tomcat收到以下请求,我有一个欢迎文件(myapp.html),我想要服务:

> localhost:8080 / myapp

> localhost:8080 / myapp /

> localhost:8080 / myapp /#

> localhost:8080 / myapp /#< blah>

……其中< blah>是英镑符号(#)后的任何字符串/正则表达式.

因此,如果用户访问http:// localhost:8080 / myapp,则返回myapp.html.如果用户转到http:// localhost:8080 / myapp /#fjrifjri,那么猜猜是什么?发回myapp.html.

但是,如果用户转到http:// localhost:8080 / myapp / fizz,那么我想要正常的web.xml servlet-mapping逻辑启动,我希望Tomcat能够回送任何servlet映射到的/嘶嘶声等

目前我的web.xml看起来像:

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee

http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"

version="2.5"

xmlns="http://java.sun.com/xml/ns/javaee">

myapp.html

我怎么能做到这一点?

<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://JAVA.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> <display-name>springMVC</display-name> <welcome-file-list> <welcome-file>/WEB-INF/jsp/login.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext-mybatis.xml</param-value> </context-param> <filter> <filter-name>encodingFilter</filter-name> <filter-class> org.springframework.web.filter.CharacterEncodingFilter </filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>encodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>log4jConfigLocation</param-name> <param-value>classpath:log4j.properties</param-value> </context-param> <context-param> <param-name>webAppRootKey</param-name> <param-value>keshe_C12_09.root</param-value> </context-param> <listener> <listener-class> org.springframework.web.util.Log4jConfigListener </listener-class> </listener> </web-app>
07-16
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值