程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Spring Mvc——Controller中常規方法示例

Spring Mvc——Controller中常規方法示例

編輯:JAVA綜合教程

Spring Mvc——Controller中常規方法示例


一,簡單無參數地址訪問

首先來看下類標記:

/**
 * Created by LiuHuiChao on 2016/3/21.
 */
@Controller
@RequestMapping("/hello")
public class HelloMvcController {

簡單進行類中方法的訪問:
/*簡單訪問示例*/
	@RequestMapping("/mvc")
	public String helloMvc() {
		return "home";
	}

二,使用Servlet api方式獲取參數

/* request方式獲取參數 */
	@RequestMapping("/views3")
	public String viewCourse3(HttpServletRequest request) {
		Integer courseId = Integer.valueOf(request.getParameter("courseId"));
		System.out.println(courseId);
		return "home";
	}

三,通過方法參數方式獲取

/* 本方法處理 /hello/view?courseId=123 */
	@RequestMapping(value = "/views", method = RequestMethod.GET)
	public String viewCourse(@RequestParam("courseId") Integer courseId) {
		System.out.println(courseId);
		return "home";
	}

 

四,restful 風格URL參數獲取

/* restful 風格URL示例 */
	/* 本方法處理 /hello/view/{courseId} */
	@RequestMapping(value = "/views/{courseId}", method = RequestMethod.GET)
	public String viewCourse2(@PathVariable("courseId") Integer courseId,
			Map model) {
		System.out.println("restful風格URL示例測試---" + courseId);
		// model.put("course",courseId);
		return "home";
	}

五,重定向操作

/*重定向操作*/
	@RequestMapping(value = "/save", method = RequestMethod.POST)
	public String doSave(@ModelAttribute Course course) {
		// 再此處進行save操作
		return "redirect:views/" + course.getCourseId();// 重定向
	}

六,接收上傳的文件

/*上傳文件示例*/
	@RequestMapping(value="/doUpload",method=RequestMethod.POST)
	public String doUploadFile(@RequestParam("file") MultipartFile file){
		
		if(!file.isEmpty()){
			System.out.println("請在這裡寫入對文件的操作");
			//寫入文件等操作。。。。
		}
		
		return "success";
	}

另外,還需要在spring mvc的配置文件中加入:

 
    
    	
    	
    	
    
    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved