代码改变世界

基于注解的spring3.0.x MVC学习笔记

2011-06-22 14:03  iocn  阅读(519)  评论(0编辑  收藏  举报

原创  基于注解的spring3.0.x MVC学习笔记 收藏

这次开始主要对spring的每个注解用法进行详细的介绍,
@RequestMapping的参数如下

/**
*
@see RequestMapping 参数

*
@param value
* 需要跳转的地址
*
@param mehtod
* 基于RestFul的跳转参数,有RequestMethod.get post,put 等
*
@param params
* 符合某个参数的时候才调用该方法
*
@param headers
* 符合头信息的时候才调用
*
*/

SpringMVC中大部分请求都是由RequestMapping提交的,而且提交的类型有很多种,以3.0来讲一般的请求方式有以下几种

第一种:以无参的形式返回:

/**
* 无参数返回的是根据 prefix前缀+@RequestMapping value +suffix后缀组成
*
*/

@RequestMapping(
"/novoid")
public void novoid() {
logger.info(
this.getClass().getSimpleName() + "novoid方法被调用");
}

返回的地址是http://访问地址/项目名称/spring配置文件bean 为viewResolver 的prefix的值+requestMapping返回的值+suffix的值

第二种:返回一个String类型:

/**
* 根据String字符串返回对应的地址 prefix前缀+返回值+suffix后缀组成
*
*/
@RequestMapping(
"/string")
public String string() {
logger.info(
"String 方法调用");
return "WEB-INF/jsp/success";
}

第三种:返回一个ModelAndView对象

/**
* spring2.5的方法,返回一个ModelAndView 对象,通过setViewName方法跳转到指定的页面 调用addObject
* 相当于调用request.setAttribute方法
*
*/
@RequestMapping(
"/modelview")
public ModelAndView view(Model model) {
logger.info(
"view 方法调用");
ModelAndView andView
= new ModelAndView();
andView.setViewName(
"WEB-INF/jsp/success");
return andView;
}

第四种返回一个Map集合

/**
*
@see 使用map作为返回值的时候 是以prefix前缀+requestMapping的value+suffix后缀组成 返回一个map
* ,map的put方法调用相当于request.setAttribute方法
*
*/
@RequestMapping(
"/mapa")
public Map<String, Object> mapa(ModelMap map1) {
Map
<String, Object> map = new HashMap<String, Object>();
UserBean bean
= new UserBean();
bean.setId(
1);
bean.setUsername(
"Edward Lau");
bean.setPassword(
"edward");
map.put(
"hello", "world key");
map.put(
"user", bean);
return map;
}

使用第四种方法,可以在页面中通过调用JSTL进行取值,如下面jsp代码

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Mapa</title>
</head>
<body>
Map a
姓名:${user.username }
密码:${user.password }
hello:${hello }
</body>
</html>


第五种返回一个ModelMap类型:

/**
*
@see 返回一个ModelMap类型,返回地址根据以prefix前缀+requestMapping的value+suffix后缀组成
* ModelMap 本身也拥有hashmap的方法,也可以使用addAllAttributes对一个map添加到attribute里面
*
*/
@RequestMapping(
"/map")
public ModelMap map() {
ModelMap map
= new ModelMap();
map.addAttribute(
"aa", "bb");
map.addAllAttributes(temp());
return map;
}

/**
*
@see 临时类
*
@return 返回一个map类型
*
*/
public Map<String, UserBean> temp() {
Map
<String, UserBean> map1 = new HashMap<String, UserBean>();
UserBean bean
= new UserBean();
bean.setId(
1);
bean.setUsername(
"Edward Lau");
bean.setPassword(
"edward");
map1.put(
"user", bean);
// map1.put("hello", "world key");
UserBean bean1 = new UserBean();
bean1.setId(
2);
bean1.setUsername(
"Edward Lau2");
bean1.setPassword(
"edward");
map1.put(
"user1", bean1);
System.out.println(map1);
return map1;
}

使用ModelMap可以把一个多个集合存到一个属性中,可以直接在页面调用EL 语言进行读取,jsp代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding
="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Mapa</title>
</head>
<body>
Map a
姓名:${user.username }
密码:${user.password }
hello:${hello }
aa:${aa }
</body>
</html>

via:http://blog.csdn.net/wp_84/archive/2011/02/22/6201090.aspx