转发地址:https://www.iteye.com/blog/wiselyman-2213907

2.1 @RequestMapping

  • @RequestMapping是SpringMVC的核心注解,负责访问的url与调用方法之间的映射;
  • @RequestMapping可以放在类和方法上;
    • @RequestMapping的属性produces属性控制response返回的形式;
    • @RequestMapping的属性method属性控制接受访问的类型,不写不做限制,本例为演示方便全部都是get请求;
  • @ResponseBody(放在方法上或者返回值类型前)将方法参数放置在web body的body中(返回的不是页面而是你所控制的字符)
  • @RequestBody(放在方法参数前)将方法参数放置在web request的body中(如提交一个json对象作为参数-在03点睛Spring MVC 4.1-REST演示)
  • produces的内容是指定返回的媒体类型让浏览器识别
    • 如返回text/plain的话,chrome浏览器下network显示Response的Content-Type:text/plain;
    • 如返回application/json的话,chrome浏览器下network显示Response的application/json;
    • 因本节无页面,在03点睛Spring MVC 4.1-REST有只管的阐述和演示;
  • 这节使用@RequestMapping演示常用映射场景

2.2 演示

  • 传值对象
  1. package com.wisely.web;
  2.  
  3. public class DemoObj {
  4. private Long id;
  5. private String name;
  6.  
  7. public DemoObj() {
  8. super();
  9. }
  10.  
  11. public DemoObj(Long id, String name) {
  12. super();
  13. this.id = id;
  14. this.name = name;
  15. }
  16. public Long getId() {
  17. return id;
  18. }
  19. public void setId(Long id) {
  20. this.id = id;
  21. }
  22. public String getName() {
  23. return name;
  24. }
  25. public void setName(String name) {
  26. this.name = name;
  27. }
  28.  
  29. }
  • 控制器 TestController
  1. package com.wisely.web;
  2.  
  3. import javax.servlet.http.HttpServletRequest;
  4.  
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RequestParam;
  9. import org.springframework.web.bind.annotation.ResponseBody;
  10.  
  11. @Controller //声明为控制器bean
  12. @RequestMapping("/test")// 根地址为http://localhost:8080/testSpringMVC/test
  13. public class TestController {
  14. //response媒体类型(MediaType)为text/plain,编码是utf-8
  15. @RequestMapping(produces = "text/plain;charset=UTF-8")
  16. //映射地址为http://localhost:8080/testSpringMVC/test
  17. @ResponseBody //此注解让返回值不是页面,也是将结果字符串直接返回
  18. public String root(HttpServletRequest request){
  19. return "url:"+request.getRequestURL()+" 可以访问此方法";
  20. }
  21.  
  22. @RequestMapping(value = "/add",produces = "text/plain;charset=UTF-8")
  23. //映射地址为http://localhost:8080/testSpringMVC/test/add
  24. @ResponseBody
  25. public String add(HttpServletRequest request){
  26. return "url:"+request.getRequestURL()+" 可以访问此方法";
  27. }
  28.  
  29. @RequestMapping(value = {"/remove","/delete"},produces = "text/plain;charset=UTF-8")
  30. //映射地址为http://.../test/remove(或http://.../test/delete)
  31. @ResponseBody
  32. public String remove(HttpServletRequest request){
  33. return "url:"+request.getRequestURL()+" 可以访问此方法";
  34. }
  35.  
  36. //获取request参数
  37. //获取路径参数
  38. @RequestMapping(value = "/get",produces = "text/plain;charset=UTF-8")
  39. //映射路径http://.../test/get?id=123
  40. @ResponseBody
  41. public String passRequestParam(@RequestParam Long id,HttpServletRequest request){
  42. System.out.println("id为"+id);
  43. return "url:"+request.getRequestURL()+" 可以访问此方法";
  44.  
  45. }
  46.  
  47. //获取路径参数
  48. @RequestMapping(value = "/{id}",produces = "text/plain;charset=UTF-8")
  49. //映射路径http://.../test/123
  50. @ResponseBody
  51. public String passPathVariable(@PathVariable Long id,HttpServletRequest request){
  52. System.out.println("id为"+id);
  53. return "url:"+request.getRequestURL()+" 可以访问此方法";
  54.  
  55. }
  56.  
  57. //获得对象
  58. @RequestMapping(value = "/pass",produces = "text/plain;charset=UTF-8")
  59. //映射路径http://.../test/pass?id=123&name=wyf
  60. @ResponseBody
  61. public String passObj(DemoObj obj,HttpServletRequest request){
  62. System.out.println("对象的id和名称分别为为:"+obj.getId()+"/"+obj.getName());
  63. return "url:"+request.getRequestURL()+" 可以访问此方法";
  64.  
  65. }
  66.  
  67. }

02点睛Spring MVC 4.1-@RequestMapping的更多相关文章

  1. spring mvc 注解@Controller @RequestMapping @Resource的详细例子

    现在主流的Web MVC框架除了Struts这个主力 外,其次就是Spring MVC了,因此这也是作为一名程序员需要掌握的主流框架,框架选择多了,应对多变的需求和业务时,可实行的方案自然就多了.不过 ...

  2. Spring MVC 之@Controller@RequestMapping详解

    一:配置web.xml 1)问题:spring项目中有多个配置文件mvc.xml   dao.xml 2)解决:在web.xml中 <init-param> <param-name& ...

  3. 01点睛Spring MVC 4.1-搭建环境

    转发:https://www.iteye.com/blog/wiselyman-2213906 1.1 简单示例 通篇使用java config @Controller声明bean是一个控制器 @Re ...

  4. 03点睛Spring MVC 4.1-REST

    转发:https://www.iteye.com/blog/wiselyman-2214290 3.1 REST REST:Representational State Transfer; REST是 ...

  5. 06点睛Spring MVC 4.1-文件上传

    6.1 文件上传 在控制器参数使用@RequestParam("file") MultipartFile file接受单个文件上传; 在控制器参数使用@RequestParam(& ...

  6. 05点睛Spring MVC 4.1-服务器端推送

    转发:https://www.iteye.com/blog/wiselyman-2214626 5.1 服务器端推送 SSE(server send event)是一种服务器端向浏览器推送消息的技术, ...

  7. 04点睛Spring MVC 4.1-拦截器

    转发地址:https://www.iteye.com/blog/wiselyman-2214292 4.1 拦截器 拦截器实现了对每一个请求处理之前和之后进行相关的处理,类似于Servlet的filt ...

  8. 08点睛Spring MVC4.1-Spring MVC的配置(含自定义HttpMessageConverter)

    8.1 配置 Spring MVC的配置是通过继承WebMvcConfigurerAdapter类并重载其方法实现的; 前几个教程已做了得配置包括 01点睛Spring MVC 4.1-搭建环境 配置 ...

  9. Spring mvc中@RequestMapping 6个基本用法

    Spring mvc中@RequestMapping 6个基本用法 spring mvc中的@RequestMapping的用法.  1)最基本的,方法级别上应用,例如: Java代码 @Reques ...

随机推荐

  1. Acwing P288 休息时间 题解

    Analysis 首先假设一天的第N小时与后一天的第一个小时不相连, 这种情况下DP转移比较好想 dp[i][j][0/1]dp[i][j][0/1]表示 考虑一天的前i个小时,已经休息了j小时,且第 ...

  2. Linux安装php yaml扩展

    1.首先得安装libyamlgit clone https://github.com/yaml/libyaml./bootstrap ./configure make make install 2.安 ...

  3. [ThinkPHP6.*安装 (草稿先发布,再维护)

    ThinkPHP6.0的安装,官方文档中有详细的说明,不过在安装之前,大家还是要做一些准备的,就是PHP本地开发环境 的搭建. 官方手册地址:https://www.kancloud.cn/manua ...

  4. ICEM-带把圆环

    原视频下载地址:https://pan.baidu.com/s/1pKSXyR5 密码: dynm

  5. ubuntu之路——day8.2 深度学习优化算法之指数加权平均与偏差修正,以及基于指数加权移动平均法的动量梯度下降法

    首先感谢吴恩达老师的免费公开课,以下图片均来自于Andrew Ng的公开课 指数加权平均法 在统计学中被称为指数加权移动平均法,来看下面一个例子: 这是伦敦在一些天数中的气温分布图 Vt = βVt- ...

  6. PHP用strtotime()函数比较两个时间的大小实例详解

    在PHP开发中,我们经常会对两个时间的大小进行判断,但是,在PHP中,两个时间是不可以直接进行比较,因为时间是由年.月.日.时.分.秒组成的,所以,如果需要将两个时间进行比较的话,我们首先要做的就是将 ...

  7. Python之pygame学习绘制文字制作滚动文字

    pygame绘制文字 ✕ 今天来学习绘制文本内容,毕竟游戏中还是需要文字对玩家提示一些有用的信息. 字体常用的不是很多,在pygame中大多用于提示文字,或者记录分数等事件. 字体绘制基本分为以下几个 ...

  8. [Web前端] WEEX、React-Native开发App心得 (转载)

    转自: https://www.jianshu.com/p/139c5074ae5d 2018 JS状态报告: https://2018.stateofjs.com/mobile-and-deskto ...

  9. CEF3开发者系列之Cookies管理和共享<转>

    原帖地址:https://www.cnblogs.com/guolixiucai/p/6994559.html 涉及网页登录相关的技术,Cookies肯定是忽略不了的.由于项目的需要,要做一个双核的产 ...

  10. JVM 类加载器ClassLoader源码学习笔记

    类加载 在Java代码中,类型的加载.连接与初始化过程都是在程序运行期间完成的. 类型可以是Class,Interface, 枚举等. Java虚拟机与程序的生命周期 在如下几种情况下,Java虚拟机 ...