最近在配置spring mvc+velocity的时候发现welcome-file-list配置没有作用,请各位指教 配置文件大概如下 <bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"> <property name="resourceLoaderPath" value="velocity/"></property> </bean> resourceLoaderPath中配置了velocity模板的路径 web.xml 文件中的配置情况 <servlet> <servlet-name>dispatcherContext</servlet-name> <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value> WEB-INF/config/spring/applicationContext.xml </param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherContext</servlet-name> <url-pattern>*.html</url-pattern> </servlet-mapping> 拦截所有的html,但在<welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> 配置中方为,http://localhost:8080/test 却没有进入index.html中,http://localhost:8080/test/index.html这样就ok
应该说这是 welcome-file-list 的一个不足,如果指定了 index.html 为默认首页,这这个文件必须存在于相应目录(此例为文档根目录) 解决的办法,你可以把 welcome-file 指定为 index.vm ,然后生成一个 index.vm,内容如下 #set($__nothing = $application.getRequestDispatcher("/index.html").forward($request,$response)) 即可,OSChina 就是这么干的。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。