controller

  package com.example.demo.controller;

  import java.util.HashMap;

  import java.util.Map;

  import org.apache.catalina.servlet4preview.http.HttpServletRequest;

  import org.springframework.web.bind.annotation.GetMapping;

  import org.springframework.web.bind.annotation.PathVariable;

  import org.springframework.web.bind.annotation.RequestBody;

  import org.springframework.web.bind.annotation.RequestHeader;

  import org.springframework.web.bind.annotation.RequestMapping;

  import org.springframework.web.bind.annotation.RequestMethod;

  import org.springframework.web.bind.annotation.RequestParam;

  import org.springframework.web.bind.annotation.RestController;

  import com.example.demo.domain.User;

  @RestController

  @RequestMapping("/get")

  public class GetController {

  Map result = new HashMap();

  /**

  * 测试GET请求1

  * @return

  */

  @RequestMapping(path="/test1", method=RequestMethod.GET)

  public String test1() {

  return "test1...";

  }

  /**

  * 测试GET请求2(使用GetMapping简写)

  * @return

  */

  @GetMapping("/test2")

  public String test2(){

  return "test2...";

  }

  /**

  * 测试GET请求参数传递及默认值

  * @return

  */

  @GetMapping("/test3")

  public Object test3(@RequestParam(defaultValue="0",name="a") int a, int b){

  result.clear();

  result.put("a", a);

  result.put("b", b);

  return result;

  }

  /**

  * 测试restful协议,从路径中获取字段

  * @param cityId

  * @param userId

  * @return

  */

  @GetMapping("/{city_id}/{user_id}")

  public Object findUser(@PathVariable("city_id") String cityId,

  @PathVariable("user_id") String userId) {

  result.clear();

  result.put("cityId", cityId);

  result.put("userId", userId);

  return result;

  }

  /**

  * Bean对象传参

  * 注意:1、要指定http请求头content-type为application/json

  * 2、使用body传输数据

  * @param user

  * @return。

  */

  @GetMapping("/saveuser")

  public Object savaUser(@RequestBody User user){

  result.clear();

  result.put("user", user);

  return result;

  }

  /**

  * 获取http请求头部信息

  * @param accessToken

  * @param contentType

  * @return

  */

  @GetMapping("/headerinfo")

  public Object headerinfo(@RequestHeader("access_token") String accessToken,

  @RequestHeader("Content-Type") String contentType) {

  result.clear();

  result.put("access_token", accessToken);

  result.put("content_type", contentType);

  return result;

  }

  /**

  * 获取request对象传递的参数

  * @param request

  * @return

  */

  @GetMapping("/requestparams")

  public Object requestparams(HttpServletRequest request){

  result.clear();

  result.put("param1", request.getParameter("param1"));

  return result;

  }

  }

  User实体类

  package com.example.demo.domain;

  import java.util.Date;

  import com.fasterxml.jackson.annotation.JsonFormat;

  import com.fasterxml.jackson.annotation.JsonIgnore;

  import com.fasterxml.jackson.annotation.JsonInclude;

  import com.fasterxml.jackson.annotation.JsonInclude.Include;

  import com.fasterxml.jackson.annotation.JsonProperty;

  public class User {

  @JsonProperty("name")

  private String username;

  @JsonIgnore

  private String userid;

  @JsonIgnore

  private String password;

  @JsonInclude(Include.NON_NULL)

  private Integer age;

  @JsonInclude(Include.NON_NULL)

  @JsonFormat(pattern="yyyy-MM-dd hh:mm:ss", locale="zh", timezone="GMT+8")

  private Date createTime;

  public User() {

  super();

  }郑州妇科医院哪家好 http://mobile.chfk120.com/

  public User(String username, String userid, String password, Integer age, Date createTime) {

  super();

  this.username = username;

  this.userid = userid;

  this.password = password;

  this.age = age;

  this.createTime = createTime;

  }

  public String getUsername() {

  return username;

  }

  public void setUsername(String username) {

  this.username = username;

  }

  public String getUserid() {

  return userid;

  }

  public void setUserid(String userid) {

  this.userid = userid;

  }

  public String getPassword() {

  return password;

  }

  public void setPassword(String password) {

  this.password = password;

  }

  public Integer getAge() {

  return age;

  }

  public void setAge(Integer age) {

  this.age = age;

  }

  public Date getCreateTime() {

  return createTime;

  }

  public void setCreateTime(Date createTime) {

  this.createTime = createTime;

  }

  }

SpringBoot学习笔记:http接口请求的更多相关文章

  1. SpringBoot学习笔记:Swagger实现文档管理

    SpringBoot学习笔记:Swagger实现文档管理 Swagger Swagger是一个规范且完整的框架,用于生成.描述.调用和可视化RESTful风格的Web服务.Swagger的目标是对RE ...

  2. SpringBoot学习笔记:自定义拦截器

    SpringBoot学习笔记:自定义拦截器 快速开始 拦截器类似于过滤器,但是拦截器提供更精细的的控制能力,它可以在一个请求过程中的两个节点进行拦截: 在请求发送到Controller之前 在响应发送 ...

  3. SpringBoot学习笔记

    SpringBoot个人感觉比SpringMVC还要好用的一个框架,很多注解配置可以非常灵活的在代码中运用起来: springBoot学习笔记: .一.aop: 新建一个类HttpAspect,类上添 ...

  4. SpringBoot学习笔记(3):静态资源处理

    SpringBoot学习笔记(3):静态资源处理 在web开发中,静态资源的访问是必不可少的,如:Html.图片.js.css 等资源的访问. Spring Boot 对静态资源访问提供了很好的支持, ...

  5. SpringBoot学习笔记(2):引入Spring Security

    SpringBoot学习笔记(2):用Spring Security来保护你的应用 快速开始 本指南将引导您完成使用受Spring Security保护的资源创建简单Web应用程序的过程. 参考资料: ...

  6. SpringBoot学习笔记(4):添加自定义的过滤器

    SpringBoot:学习笔记(4)——添加自定义的过滤器 引入自定义过滤器 SpringBoot提供的前端控制器无法满足我们产品的需求时,我们需要添加自定义的过滤器. SpringBoot添加过滤器 ...

  7. SpringBoot学习笔记(10):使用MongoDB来访问数据

    SpringBoot学习笔记(10):使用MongoDB来访问数据 快速开始 本指南将引导您完成使用Spring Data MongoDB构建应用程序的过程,该应用程序将数据存储在MongoDB(基于 ...

  8. SpringBoot学习笔记:动态数据源切换

    SpringBoot学习笔记:动态数据源切换 数据源 Java的javax.sql.DataSource接口提供了一种处理数据库连接的标准方法.通常,DataSource使用URL和一些凭据来建立数据 ...

  9. springboot学习笔记:9.springboot+mybatis+通用mapper+多数据源

    本文承接上一篇文章:springboot学习笔记:8. springboot+druid+mysql+mybatis+通用mapper+pagehelper+mybatis-generator+fre ...

  10. openresty 学习笔记二:获取请求数据

    openresty 学习笔记二:获取请求数据 openresty 获取POST或者GET的请求参数.这个是要用openresty 做接口必须要做的事情.这里分几种类型:GET,POST(urlenco ...

随机推荐

  1. win7系统中右键新建没有写字板

    问题描述: win7系统中右键新建没有写字板 解决方案: 1. 按下Win+R后输入regedit打开注册表. (可以使用组合键ALT+ 键盘上的左键, 对展开的注册表项进行折叠方可查看) 2.定位到 ...

  2. day10_7.10 函数的嵌套等

    一.命名关键字参数.(了解) 1.在函数阶段,写在*与** 可变长参数之间的形参称为命名关键字参数. 在给命名关键字参数传值时,只能用关键字为其传值.诸如以下函数的形参 def func(x,y=,* ...

  3. 浅谈SOA与RPC

    一.SOA 英文名称:Service Oriented Ambiguity 中文名称:面向服务架构 SOA是一种思想,目的是提供一种设计项目的思路,让开发时更有效率. 例如原来的分布式项目中,在每个项 ...

  4. shell的使用技巧

    推荐使用的远程连接软件以及vi编辑器的基本使用 简介:远程连接软件 与 vi命令的基本使用 (1)软件: CRT 已经下载好的压缩包 直接双击 点击新建会话  点击下一步  输入主机名  下一步    ...

  5. Salesforce 自定义元数据类型

    自定义元数据类型的优点 Salesforce中的设定都是以元数据(Metadata)存在的.在Salesforce中,用户可以新建自定义对象.自定义字段等,这些数据结构都以元数据的形式存储在系统中.当 ...

  6. set去重应用

    1.其中涉及__hash__与__eq__这两个内置方法. 2.列如: 要求用类生成多个对象,其中姓名和性别相同的对象可认为是同一个人,用set原理做去重 class People: def __in ...

  7. 修改hadoop/hbase/spark的pid文件位置

    1.说明 当不修改PID文件位置时,系统默认会把PID文件生成到/tmp目录下,但是/tmp目录在一段时间后会被删除,所以以后当我们停止HADOOP/HBASE/SPARK时,会发现无法停止相应的进程 ...

  8. [LeetCode] 255. Verify Preorder Sequence in Binary Search Tree 验证二叉搜索树的先序序列

    Given an array of numbers, verify whether it is the correct preorder traversal sequence of a binary ...

  9. 解决VMware虚拟机中centos 7无法上网的问题

    在WMware中安装centos 7后发现无法安装软件,开始以为是镜像服务器的问题,后来通过ping之后发现根本没办法连接到网络.由于很多设置都是默认的,并且虚拟机也是NAT模式,和电脑主机共享网络, ...

  10. oracle 错误 ORA-00020问题解析

    问题描述 [oracle@xiaowu ~]$ sqlplus / as sysdba SQL*Plus: Release Production on Wed Oct :: Copyright (c) ...