51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 792|回复: 2
打印 上一主题 下一主题

restful接口返回数据为空!

[复制链接]
  • TA的每日心情
    无聊
    4 天前
  • 签到天数: 530 天

    连续签到: 2 天

    [LV.9]测试副司令

    跳转到指定楼层
    1#
    发表于 2022-10-8 10:03:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    1测试积点
    写了一个接口,我用浏览器、postman、idea的restclient调用这个接口返回的都是这是我的controller
    @RestController
    //@Controller
    public class CarInfoController {

        @Autowired
        private CarInfoService carInfoService;

    //    static Log log = LogFactory.getLog(CarInfoController.class.getName());

        @GetMapping("/select")
        public ResponseEntity<Carinfo> selectById(@RequestParam("id")String carNum){
    //        log.debug("log4j日志开启");
            Carinfo c = new Carinfo();
            c.setCarnum(carNum);
            c.setMileageday(233.0);
            Carinfo carinfo = this.carInfoService.queryListById(c);
            System.out.println("-----------------------"+carinfo);
            System.out.println("ResponseEntity.ok(carinfo)==============="+ResponseEntity.ok(carinfo));
            return ResponseEntity.ok(carinfo);
        }
    }



    这是我的测试结果

    <span style="font-weight: normal;">```java
    http://localhost:8080/select?id=1

    HTTP/1.1 200
    Content-Length: 0
    Date: Wed, 05 Oct 2022 08:19:07 GMT
    Keep-Alive: timeout=60
    Connection: keep-alive

    <Response body is empty>



    Response code: 200; Time: 461ms; Content length: 0 bytes</span>


    自己写的项目,没有使用方向,只是我自己配置了aop、拦截器等等找不到原因

    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    昨天 10:15
  • 签到天数: 756 天

    连续签到: 1 天

    [LV.10]测试总司令

    2#
    发表于 2022-10-9 10:05:10 | 只看该作者
    等大神
    回复

    使用道具 举报

  • TA的每日心情
    慵懒
    前天 08:51
  • 签到天数: 668 天

    连续签到: 6 天

    [LV.9]测试副司令

    3#
    发表于 2022-10-9 10:38:14 | 只看该作者
    不清楚
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-25 03:43 , Processed in 0.061736 second(s), 22 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表