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的配置文件中加入:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值