一、HelloWorld步骤
1、新建动态的web工程
2、加入jar包,必须需要的jar包:aop,beans,context,core,expression,web,webmvc以及common-logging
3、配置web.xml文件
<!-- 配置DispatcherServlet --> <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- 配置 DispatcherServlet初始化参数,作用是配置springmvc配置文件的位置和名称--> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springDispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
4、创建springmvc的配置文件 springmvc.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> <!-- 首先配置自动扫描的包 --> <context:component-scan base-package="com.weixuan.springmvc.handlers"></context:component-scan> <!-- 配置视图解析器,如何把handlers方法的返回值解析成具体的物理视图 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
5、编写请求处理器
package com.weixuan.springmvc.handlers; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; //标识为控制器 @Controller public class HelloWorld { /* * 1、通过@RequestMapping注解来映射请求的url * 2、返回值会通过视图解析器解析为实际的物理视图 * 3、InternalResourceViewResolver会做如下的解析: * 通过prefix+returnvalue+suffix的方式得到具体的视图,然后做转发操作 */ @RequestMapping("/helloworld") public String Hello() { System.out.println("HelloWorld!"); return "success"; } }
二、HelloWorld的处理流程
1、jsp页面添加超链接
<a href="helloworld">hello world</a>
2、点击这个超链接时,会发出一个helloworld请求,这个请求会被web.xml中的springDispatcherServlet 处理
<servlet-mapping> <servlet-name>springDispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
3、使用requestmapping来映射请求的url
@RequestMapping("/helloworld")
4、配置视图解析器
<!-- 配置视图解析器,如何把handlers方法的返回值解析成具体的物理视图 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"></property> <property name="suffix" value=".jsp"></property> </bean>