`
wangzjie
  • 浏览: 74558 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Spring MVC3 默认页面(welcome-file)问题

阅读更多
    <servlet>
		<servlet-name>spring3mvc</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>/WEB-INF/conf/spring3mvc.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>  
        <servlet-name>spring3mvc</servlet-name>  
        <url-pattern>/</url-pattern>  
    </servlet-mapping>

设置了/拦截后会对所有的进行过滤(静态资源可以在<mvc:resources/>上设置),但默认页面如http://localhost:8080/appnm 一般是会去welcome页面(welcome-file-list中配置),但也是被拦截,导致404页面找不到。

一种方法是配置一个Controller,其mapping是"",这样http://localhost:8080/appnm就会被该controller捕获到。

 

/**
 * 默认页
 * @author wangzejie
 *
 */
@Controller
@RequestMapping("")
public class IndexController {

	@RequestMapping("")
	public String index(HttpServletRequest request, HttpServletResponse response) throws IOException {
		return "index";
	}
}



分享到:
评论

相关推荐

    spring MVC框架搭建

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;welcome-file&gt;index.htm&lt;/welcome-file&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;default.html&lt;/welcome-file&gt; &lt;/welcome-file...

    spring_MVC源码

    23. &lt;/welcome-file-list&gt; 24.&lt;/web-app&gt; spring-servlet,主要配置controller的信息 [java] view plaincopy 01.&lt;?xml version="1.0" encoding="UTF-8"?&gt; 02. 03. xmlns:xsi=...

    Spring MVC 框架应用实例

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;jsp-config&gt; &lt;taglib-uri&gt;...

    Spring MVC 入门实例

    45 &lt;welcome-file-list&gt; 46 &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; 47 &lt;welcome-file&gt;index.html&lt;/welcome-file&gt; 48 &lt;/welcome-file-list&gt; 49 50 &lt;jsp-config&gt; 51 52 &lt;taglib-uri&gt;...

    Spring MVC3构建Web应用详解

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 这里,DispatcherServlet被配置为`SampleSpringMVC`,并且它会处理所有以`.htm`结尾的请求。`load-on-...

    spring mvc 环境搭建

    &lt;/welcome-file-list&gt; &lt;!-- DispatcherServlet 配置 --&gt; &lt;servlet-name&gt;controller&lt;/servlet-name&gt; &lt;servlet-class&gt;org.springframework.web.servlet.DispatcherServlet&lt;/servlet-class&gt; &lt;init-param&gt; ...

    spring mvc注解实例

    5. `&lt;welcome-file-list&gt;`:定义了默认的欢迎页面,这里是 `index.jsp`。 接下来,我们关注 `spring-servlet.xml` 文件,这是 Spring MVC 的具体配置文件,主要用来配置 Controller 和其他相关组件: 1. `&lt;beans&gt;`...

    spring mvc的相关配置文档

    8. `&lt;welcome-file-list&gt;`:定义了默认欢迎页面,这里为`index.jsp`。 接下来,我们转向`spring-servlet.xml`,这是Spring MVC的特定配置文件,主要用来配置控制器和其他相关组件: 1. `&lt;beans&gt;`:这是Spring配置...

    Spring MVC--8.JSON、国际化、文件上传

    Spring MVC 是一个强大的Java Web开发框架,用于构建高效、可维护的Web应用程序。在这个主题中,我们将深入探讨JSON数据处理、国际化的实现以及文件上传功能的集成,这些都是现代Web应用中不可或缺的部分。 **一、...

    Spring MVC开发快速入门.docx

    6. `&lt;welcome-file-list&gt;`定义了默认的欢迎页面,如果没有指定路径,将尝试显示`index.jsp`或`index.html`。 7. `&lt;jsp-config&gt;`部分配置了JSP标签库,`&lt;taglib&gt;`元素指定了JSTL的核心库和格式化库的URI和位置。 ...

    spring mvc step by step

    - 如果能看到“Welcome to Spring MVC!”页面,则表示部署成功。 ##### 1.5 下载Spring Framework - 访问Spring官方网站下载最新版本的Spring Framework。 - 将下载的文件解压,并将所需的库文件添加到项目中。 #...

    spring/mvc

    - `&lt;welcome-file-list&gt;`:定义了当访问根路径时默认加载的欢迎页面。 **spring-servlet.xml**(部分): - `&lt;context:annotation-config/&gt;`:启用注解驱动的组件扫描。 - `&lt;context:component-scan base-package=...

    S2S3H3(Struts2.3.4+Spring3.0+Hibernate3.3)配置步骤

    &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` - 这里指定了Struts2的入口过滤器和Spring上下文加载监听器,并指定了Spring配置文件的位置。 6. **引入Spring依赖** - 将Spring3.0所需JAR包添加到项目中,确保包含核心...

    Struts2+spring2+hibernate3实例源码-java源码

    ### Struts2 + Spring2 + Hibernate3 整合实例源码分析 #### 一、概述 随着企业级应用的发展,为了提高开发效率和系统维护性,越来越多的项目开始采用MVC设计模式。其中,Struts2作为MVC框架中的佼佼者,在前端...

    Spring编程技术与应用教学课件汇总完整版电子教案全书课件.ppt

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` `index.jsp`是入口页面,展示欢迎信息。 1.1.4 下载Spring框架 访问Spring官方网站`...

    spring-boot-reference.pdf

    Auto-configured Spring REST Docs Tests with Mock MVC Auto-configured Spring REST Docs Tests with REST Assured 43.3.20. User Configuration and Slicing 43.3.21. Using Spock to Test Spring Boot ...

    SSH(Struts1.0+Spring+Hibernate)框架集成笔记

    - **Welcome File List**:定义了应用程序启动时默认显示的欢迎页面。 #### 五、总结 SSH框架的集成涉及到多个层次的技术和配置,对于初学者来说确实比较复杂。然而,随着实践经验的积累,开发者会逐渐理解这些...

    springmvc实战应用

    &lt;welcome-file-list&gt; &lt;welcome-file&gt;index.jsp&lt;/welcome-file&gt; &lt;/welcome-file-list&gt; &lt;/web-app&gt; ``` 在`WEB-INF/`目录下需要创建与servlet-name相对应的配置文件hello-servlet.xml,并配置相关的bean: ```xml...

Global site tag (gtag.js) - Google Analytics