JavaWeb笔记020 SSM整合、接收参数,Restful风格,重定向和转发,ResponseBody忽略null

关键配置文件:

db.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/springmvc?characterEncoding=utf-8
jdbc.username=root
jdbc.password=admin

log4j.properties 略

SqlMapConfig.xml




	


DAO配置,ApplicationContest-dao.xml




	
	
	
	
		
		
		
		
		
		
	
	
	
	
	
		
		
		
		
	
	
	
	
		
	



Service配置,ApplicationContext-service.xml




	
	
	
		
   

事物配置,ApplicationContext-trans.xml,使用注解更方便

注意注解事务和切面事务最好只留一个!!!!



	
	
		
		
	
	
	
	
		
			
			
			
			
			
			
			
			
			
			
		
	
	
	
	
		
	
    
	
	

SpringMvc.xml



    
    
    
    
    
    
    
    
	
		
		
		
		
		
	
	
	
	
		
			
				
				
			
		
	
	


web.xml



  ssm0523
  
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
  
  
  
	
		contextConfigLocation
		classpath:ApplicationContext-*.xml
	
	
		org.springframework.web.context.ContextLoaderListener
	
  
  
  
  
  	springMvc
  	org.springframework.web.servlet.DispatcherServlet
  	
  		contextConfigLocation
  		classpath:SpringMvc.xml
  	
  	
  	1
  
  
  	springMvc
  	*.action
  
  
  
  
		CharacterEncodingFilter
		org.springframework.web.filter.CharacterEncodingFilter
		
			encoding
			utf-8
		
	
	
		CharacterEncodingFilter
		/*
	
  

关键代码:

Service的实现类,接口略,mapper和实体类可以用逆向根据数据库直接生成

@Service
public class ItemsServiceImpl implements ItemsService {

	@Autowired
	private ItemsMapper itemsMapper;
	
	@Override
	public List list() throws Exception {
		//如果不需要任何查询条件,直接将example对象new出来即可
		ItemsExample example = new ItemsExample();
		// item里面有个blob格式的文本,也查出来
		List list = itemsMapper.selectByExampleWithBLOBs(example);
		return list;
	}	
	...
}

Controller

@Controller
public class ItemsController {

	@Autowired
	private ItemsService itmesService;
	
	@RequestMapping("/list")
	public ModelAndView itemsList() throws Exception{
	    // 调用DAO
		List list = itmesService.list();
		
		ModelAndView modelAndView = new ModelAndView();
		
		modelAndView.addObject("itemList", list);
		// 核心配置文件中有视图解析器配置的前缀和后缀,这里只需要写名字
		modelAndView.setViewName("itemList");
		
		return modelAndView;
	}
	
	
	//
	//
	// 概括来讲,和Struts2参数封装类似,一级参数:直接用名字,二级:一级参数.二级参数
	// 例如A类中有两个属性,String s;和B b;
	// B中有一个属性String ss;
	// 传参数的时候是s=xxx,b.ss=xxx。
	//
	//
	
	
	/**
	 * springMvc中默认支持的参数类型:也就是说在controller方法中可以加入这些也可以不加,  加不加看自己需不需要,都行.
	 * HttpServletRequest
	 * HttpServletResponse
	 * HttpSession
	 * Model
	 */
	@RequestMapping("/itemEdit")
	public String itemEdit(HttpServletRequest reuqest, 
			 Model model) throws Exception{
		
		String idStr = reuqest.getParameter("id");
		Items items = itmesService.findItemsById(Integer.parseInt(idStr));
		
		//Model模型:模型中放入了返回给页面的数据
		//model底层其实就是用的request域来传递数据,但是对request域进行了扩展.
		model.addAttribute("item", items);
		
		//如果springMvc方法返回一个简单的string字符串,那么springMvc就会认为这个字符串就是页面的名称
		return "editItem";
	}
	
	//springMvc可以直接接收基本数据类型,包括string.spirngMvc可以帮你自动进行类型转换.
	//controller方法接收的参数的变量名称必须要等于页面上input框的name属性值
	//public String update(Integer id, String name, Float price, String detail) throws Exception{
	
	//spirngMvc可以直接接收pojo类型:要求页面上input框的name属性名称必须等于pojo的属性名称
	@RequestMapping("/updateitem")
	public String update(Items items) throws Exception{
		itmesService.updateItems(items);
		
		return "success";
	}
	
	//如果Controller中接收的是Vo,那么页面上input框的name属性值要等于vo的属性.属性.属性.....
	@RequestMapping("/search")
	public String search(QueryVo vo) throws Exception{
		System.out.println(vo);
		return "";
	}
	
	// 如果接收数组,可以在QueryVo中加一个数组字段即可,例如Integer[] ids,请求的时候带上多个参数名为ids的即可。也可以直接在方法中加一个名为ids的参数
	public String search(QueryVo vo, Integer[] ids) throws Exception{
		...
		return "";
	}
	
	
	
	
	// 接收列表类型的,例如一个Items列表List items,可以在QueryVo中添加这个属性,页面中这样改
	
	
	
	
	
	
	
}

Restful

package com.taotao.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import com.taotao.common.pojo.EasyUIDataGridResult;
import com.taotao.pojo.TbItem;
import com.taotao.service.ItemService;

@Controller
//窄化请求映射:为防止你和你的队友在conroller方法起名的时候重名,所以相当于在url中多加了一层目录,防止重名
@RequestMapping("xxx")
public class ItemController {

	@Autowired
	private ItemService itemService;
	
	// @PathVariable是为了将请求参数和方法参数绑定,如果两者相同,例如下面的请求中大括号中的itemId和方法中的参数名字相同,注解中的值可以省略,写成(@PathVariable Long itemId)
	// @ResponseBody是根据请求的协议将对象转为相应的字符串,例如请求的是json格式数据,会把返回的tbItem转为json的数据最终给请求者,需要依赖Jackson
	// @RequestMapping(value="/list", method=RequestMethod.GET)可以添加请求限制
	@RequestMapping("/item/{itemId}")
	@ResponseBody
	public TbItem getItemById(@PathVariable("itemId") Long itemId) {
		TbItem tbItem = itemService.getItemById(itemId);
		return tbItem;
	}
	
	@RequestMapping("/item/list")
	@ResponseBody
	public EasyUIDataGridResult getItemList(Integer page, Integer rows) {
		EasyUIDataGridResult result = itemService.getItemList(page, rows);
		return result;
	}
}

参数默认值和指定参数名,下面的例子表示名为id的参数用参数param接收,如果没有,默认值为0

public EasyUIDataGridResult getItemList(@RequestParam(name="id", defaultValue="0")Integer param) {
	EasyUIDataGridResult result = itemService.getItemList(page, rows);
	return result;
}

重定向和转发

public String update(MultipartFile pictureFile,Items items, Model model, HttpServletRequest request) throws Exception{

    //重定向:浏览器中url发生改变,request域中的数据不可以带到重定向后的方法中
    
    // 1. 普通风格请求
    model.addAttribute("id", items.getId());
    //在springMvc中凡是以redirect:字符串开头的都为重定向
    return "redirect:itemEdit"; // 普通请求
    
    // 2. restful类型的请求
    return "redirect:itemEdit/"+items.getId(); 
    
    // 以上两种根据要转发的请求二选一,itemEdit为普通风格就选第一种,为restful风格就选第二种
    
    // 转发就把redirect换成forward
    
    // ------------注意:-------------
    // 以上两种写法中都是冒号后面直接跟路径,这是相对路径,相对于当前目录,如果冒号后先跟一个/表示绝对路径,例如:
    // redirect:itemEdit和redirect:/itemEdit,分别表示ip:port/当前目录(就是在类上加的RequestMapping)/itemEdit和ip:port/itemEdit
    // 一般当前目录的,用相对路径,跨controller用绝对路径
}

@ResponseBody忽略NULL字段


	
	
		
			
				
					
						
							NON_NULL
						
					
				
			
		
	

你可能感兴趣的:(JavaWeb笔记,SSM,Restful,SpringMVC参数,ResponseBody,重定向和转发)