SpringMVC和Struts2一样,是前后台的一个粘合剂,struts2用得比较熟悉了,现在来配置一下SpringMVC,看看其最基础配置和基本使用。SpriingMVC不是太难,学习成本不高,现在很多人都喜欢使用它了。
本次demo工程是一个maven工程,使用maven来对项目进行管理。
一、首先需要建立一个maven的webapp工程。
目录结构如下:
二、配置maven的pox.xml
junit
junit
4.10
test
org.springframework
spring-webmvc
3.2.8.RELEASE
jstl
jstl
1.1.2
这里我们使用的spring版本是3.2.8.RELEASE;配置好后,maven会自动给我们加载其他依赖的jar包,如下图:
具体依赖的包如下:
1) aopalliance-1.0.jar
2) commons-logging-1.1.3.jar
3) spring-aop-3.2.8.RELEASE.jar
4) spring-beans-3.2.8.RELEASE.jar
5) spring-context-3.2.8.RELEASE.jar
6) spring-core-3.2.8.RELEASE.jar
7) spring-expression-3.2.8.RELEASE.jar
8) spring-web-3.2.8.RELEASE.jar
9) spring-webmvc-3.2.8.RELEASE.jar
10) jstl-1.1.2.jar
三、工程配置
1、建立一个最基础的springMVC测试工程目录结构如下图:
2、application_spring_mvc.xml
3、web.xml
springMVC
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath*:/applicationContext/application_spring_mvc.xml
1
springMVC
/
default
*.html
index.html
4、index.html
Hello World!
5、UserAction.java
package com.clj.test.user.action;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
/**
* <一句话功能简述>
* <功能详细描述>
*
* @author Administrator
* @version [版本号, 2014年3月4日]
* @see [相关类/方法]
* @since [产品/模块版本]
*/
@Controller
@Scope("prototype")
@RequestMapping("/user")
public class UserAction
{
@RequestMapping(value="/save",method=RequestMethod.GET)
public ModelAndView save(String name,String password)
{
System.out.println("接收到的用户信息:"+name);
ModelAndView mov=new ModelAndView();
mov.setViewName("/test/saveUserSuccess");
mov.addObject("msg", "保存成功了");
return mov;
}
}
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
添加用户成功
操作成功了
后台返回的信息:${msg}
具体eclipse中如何使用tomcat进行maven webapp项目测试请参看:
http://blog.csdn.net/clj198606061111/article/details/202211331) 浏览器中输入:http://localhost:8080/demoSpringMVC/
便可进入index.html页面,如下图:
2) 提交后