目录

springboot请求响应——响应

复制代码
package com.hxy.springboot.springbootdemo01.demo01;

import com.hxy.springboot.springbootdemo01.pojo.Result;
import com.hxy.springboot.springbootdemo01.pojo.User;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.text.DateFormat;
import java.time.LocalDateTime;
注:@RestController=@ResponseBody+@Controller,一方面用Controller标签标记该类为控制层,一方面用@ResponseBody表明需要返回响应。
@RestController
//请求标签
public class Class3 {
注:@RequestMapping表明响应路径
    @RequestMapping("/class3")
        注:@DateTimeFormat表明映射形式为"时间"
    public Result class3(@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm")LocalDateTime localDateTime) {
        System.out.println(localDateTime);
        Result result = new Result();
        return result.success(1,"success", localDateTime);
    }

    @RequestMapping("/jasonparam")
         注:@RequestBody用于标记接收的内容为响应体,对应的在Postman中的url中需要使用jason格式进行发送
    public Result jasonparam(@RequestBody User user) {
        System.out.println(user.toString());
        Result result = new Result();
        return result.success(1,"success", user);
    }

    @RequestMapping("/jasonparam2")
        注:本响应接口与上述响应接口不同的地方在于没有使用@RequestBody标签,所以postman中也对应的是直接在Url中添加对应属性内容
    public Result jasonparam1( User user) {
        System.out.println(user.toString());
        Result result = new Result();
        return result.success(1,"success", user);
    }

    @RequestMapping("/path/{id}/{name}")
        注:@PathVariable表明响应的是一个路径格式,标签中需要与形参的名字相对应
    public Result pathtest(@PathVariable int id, @PathVariable String name) {
        System.out.println(id);
        System.out.println(name);
        Result result = new Result();
        return result.success(1,"success", id+name);
    }
}
本文是转载文章,点击查看原文
如有侵权,请联系 xyy@jishuzhan.net 删除
相关推荐
有来技术7 分钟前
从0到1手撸企业级权限系统:基于 youlai-boot(开源) + Java17 + Spring Boot 3 完整实战
java·spring boot·后端
皮卡兔子屋13 分钟前
java虚拟机---JVM
java·jvm
艾妮艾妮31 分钟前
C语言常见3种排序
java·c语言·开发语言·c++·算法·c#·排序算法
java技术小馆32 分钟前
Zookeeper中的Zxid是如何设计的
java·分布式·zookeeper·云原生
陈明勇41 分钟前
一文掌握 MCP 上下文协议:从理论到实践
人工智能·后端·mcp
葵野寺42 分钟前
【多线程】synchronized锁升级和优化
java·开发语言·java-ee
SimonKing1 小时前
因为不知道条件注解@Conditional,错失15K的Offer!
java·后端·架构
橘猫云计算机设计1 小时前
基于springboot微信小程序的旅游攻略系统(源码+lw+部署文档+讲解),源码可白嫖!
java·spring boot·后端·微信小程序·毕业设计·旅游
落榜程序员1 小时前
Java 基础-30-单例设计模式:懒汉式与饿汉式
java·开发语言