<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"; } }
相关推荐
<welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> </welcome-file...
23. </welcome-file-list> 24.</web-app> spring-servlet,主要配置controller的信息 [java] view plaincopy 01.<?xml version="1.0" encoding="UTF-8"?> 02. 03. xmlns:xsi=...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> <welcome-file>index.html</welcome-file> </welcome-file-list> <jsp-config> <taglib-uri>...
45 <welcome-file-list> 46 <welcome-file>index.jsp</welcome-file> 47 <welcome-file>index.html</welcome-file> 48 </welcome-file-list> 49 50 <jsp-config> 51 52 <taglib-uri>...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> ``` 这里,DispatcherServlet被配置为`SampleSpringMVC`,并且它会处理所有以`.htm`结尾的请求。`load-on-...
</welcome-file-list> <!-- DispatcherServlet 配置 --> <servlet-name>controller</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> ...
5. `<welcome-file-list>`:定义了默认的欢迎页面,这里是 `index.jsp`。 接下来,我们关注 `spring-servlet.xml` 文件,这是 Spring MVC 的具体配置文件,主要用来配置 Controller 和其他相关组件: 1. `<beans>`...
8. `<welcome-file-list>`:定义了默认欢迎页面,这里为`index.jsp`。 接下来,我们转向`spring-servlet.xml`,这是Spring MVC的特定配置文件,主要用来配置控制器和其他相关组件: 1. `<beans>`:这是Spring配置...
Spring MVC 是一个强大的Java Web开发框架,用于构建高效、可维护的Web应用程序。在这个主题中,我们将深入探讨JSON数据处理、国际化的实现以及文件上传功能的集成,这些都是现代Web应用中不可或缺的部分。 **一、...
6. `<welcome-file-list>`定义了默认的欢迎页面,如果没有指定路径,将尝试显示`index.jsp`或`index.html`。 7. `<jsp-config>`部分配置了JSP标签库,`<taglib>`元素指定了JSTL的核心库和格式化库的URI和位置。 ...
- 如果能看到“Welcome to Spring MVC!”页面,则表示部署成功。 ##### 1.5 下载Spring Framework - 访问Spring官方网站下载最新版本的Spring Framework。 - 将下载的文件解压,并将所需的库文件添加到项目中。 #...
- `<welcome-file-list>`:定义了当访问根路径时默认加载的欢迎页面。 **spring-servlet.xml**(部分): - `<context:annotation-config/>`:启用注解驱动的组件扫描。 - `<context:component-scan base-package=...
</welcome-file-list> </web-app> ``` - 这里指定了Struts2的入口过滤器和Spring上下文加载监听器,并指定了Spring配置文件的位置。 6. **引入Spring依赖** - 将Spring3.0所需JAR包添加到项目中,确保包含核心...
### Struts2 + Spring2 + Hibernate3 整合实例源码分析 #### 一、概述 随着企业级应用的发展,为了提高开发效率和系统维护性,越来越多的项目开始采用MVC设计模式。其中,Struts2作为MVC框架中的佼佼者,在前端...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> ``` `index.jsp`是入口页面,展示欢迎信息。 1.1.4 下载Spring框架 访问Spring官方网站`...
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 ...
- **Welcome File List**:定义了应用程序启动时默认显示的欢迎页面。 #### 五、总结 SSH框架的集成涉及到多个层次的技术和配置,对于初学者来说确实比较复杂。然而,随着实践经验的积累,开发者会逐渐理解这些...
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app> ``` 在`WEB-INF/`目录下需要创建与servlet-name相对应的配置文件hello-servlet.xml,并配置相关的bean: ```xml...