Spring - java http get请求,返回字符串多加了一层引号“

Posted daopinz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring - java http get请求,返回字符串多加了一层引号“相关的知识,希望对你有一定的参考价值。

    公司其他项目的同事调用我们模块的一个GET接口时,发现返回的字符串多了一层引号,刚看到这个问题,一脸疑惑,String类型的字符串不就是应该是这样的吗?

String result1= HttpUtil.get("http://localhost:8080/demo-service/v1/api/email/content?id=27");
System.out.println(result1);

输出:"https://demofile.aliyun.com/27.html"

    自己写了一个简单的HTTP Get请求一下,果然是这个样子的,但是我是直接从数据库拿到的这个url的啊,怎么跟平常的String不太一样?

    平常普通的字符串是这样的:

String result3 = "https://demofile.aliyun.com/27.html";
System.out.println(result3);

输出:https://demofile.aliyun.com/27.html

    神奇哦~~~

    猛然瞥见自己写的@RequestMapping,顿时觉得找到问题所在了!

    看来是把返回的数据类型配置成了application/json,怪不得加了一层双引号,改成文本类型就好了text/plain

修改前:
    @ResponseStatus(HttpStatus.OK)
    @ApiOperation("获取邮件信息-对外api")
    @RequestMapping(value = "/email/content", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
    @ApiImplicitParams(@ApiImplicitParam(name = "Authorization", value = "Authorization", required = true, dataType = "string", paramType = "header"))
    public String getEmailInfo(@RequestParam(value = "id") Integer id) 
        return emailService.getEmailUriFormOss(id);
    

修改后:
    @ResponseStatus(HttpStatus.OK)
    @ApiOperation("获取邮件信息-对外api")
    @RequestMapping(value = "/email/content", method = RequestMethod.GET, produces = MediaType.TEXT_PLAIN)
    @ApiImplicitParams(@ApiImplicitParam(name = "Authorization", value = "Authorization", required = true, dataType = "string", paramType = "header"))
    public String getEmailInfo(@RequestParam(value = "id") Integer id) 
        return emailService.getEmailUriFormOss(id);
    

以上是关于Spring - java http get请求,返回字符串多加了一层引号“的主要内容,如果未能解决你的问题,请参考以下文章

Spring - java http get请求,返回字符串多加了一层引号“

Spring - java http get请求,返回字符串多加了一层引号“

Spring - java http get请求,返回字符串多加了一层引号“

Java Spring 控制器拒绝除 GET 之外的所有请求

Spring 中 Swagger 2 GET请求注解

Spring RestTemplate 之get请求