1.1 Helloworld实例的操作步骤
1. 加入jar包
2. 配置dispatcherServlet
3. 加入Spring配置文件
4. 编写请求处理器 并表示为处理器
5. 编写视图
1.2 具体步骤
1)加入Jar包
2)配置dispatcherServlet的代码(web.xml文件)
<!-- 配置dispatcherServlet --> <servlet> <servlet-name>helloworld</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> <!-- 默认的配置文件为: /WEB-INF/<servlet-name>-servlet.xml --> </servlet> <servlet-mapping> <servlet-name>helloworld</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
3)加入Spring配置文件(<servlet-name>-servlet.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.tk.handlers"></context:component-scan> <!-- 配置视图解析器: 如何把 handler 方法返回值解析为实际的物理视图 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
4)编写请求处理器(Java类)并标识为处理器
@Controller public class Helloworld { @RequestMapping("/helloworld") public String helloworld(){ System.out.println("helloworld @RequestMapping 只有方法映射..."); return "success"; } }
5)编写视图文件
<a href="helloworld">helloworld1-@RequestMapping【只有方法映射】</a></br>
1.3 注意事项
1)实际上也可以不通过 contextConfigLocation 来配置 SpringMVC 的配置文件, 而使用默认的.
2)默认的配置文件为: /WEB-INF/<servlet-name>-servlet.xml
3)使用contextConfigLocation 来配置 SpringMVC 的配置文件
<init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> 4 </init-param>-->