登录
首页 >  文章 >  java教程

Spring Boot @RequestBody如何接收非JSON格式字符串参数?

时间:2024-12-14 17:18:44 190浏览 收藏

本篇文章主要是结合我之前面试的各种经历和实战开发中遇到的问题解决经验整理的,希望这篇《Spring Boot @RequestBody如何接收非JSON格式字符串参数?》对你有很大帮助!欢迎收藏,分享给更多的需要的朋友学习~

Spring Boot @RequestBody如何接收非JSON格式字符串参数?

spring boot中的@requestbody如何接受非json格式字符串参数?

问题:

如何使用@requestbody注解接收非json格式的字符串参数?例如,请求参数为"90c8c36f23a94c1487851129aa47d690/90c8c36f23a94c1487851129aa47d690"。

解答:

spring boot使用@requestbody注解将请求主体解析为json对象。如果请求体不是json格式,则会导致无法解析的错误。要接受非json格式的字符串,可以采取以下方法:

  1. 取消json解析:

可以通过在spring boot应用程序中将spring.jackson.parser.disable-unwrapped-values属性设置为true来取消json解析。这将允许@requestbody解析纯字符串值,但会禁用所有其他未包装值(例如,int、boolean)。

spring:
  jackson:
    parser:
      disable-unwrapped-values: true
  1. 修改请求content-type:

另一种方法是修改请求的content-type标头。将content-type设置为text/plain或application/octet-stream等非json值将指示spring boot不要将请求主体解析为json。

@postmapping(value = "/sendnews", consumes = "text/plain")
public string sendcontent(string lstmsgid) {
    // ...
}
  1. 使用自定义http消息转换器:

也可以创建自定义http消息转换器来处理非json格式的字符串。这需要实现httpmessageconverter<t>接口并注册转换器到spring mvc。

// 自定义非JSON字符串转换器
public class PlainStringHttpMessageConverter implements HttpMessageConverter<String> {

    @Override
    public boolean canRead(Class<?> clazz, MediaType mediaType) {
        return String.class.equals(clazz) && !mediaType.includes(MediaType.APPLICATION_JSON);
    }

    @Override
    public boolean canWrite(Class<?> clazz, MediaType mediaType) {
        return false;
    }

    @Override
    public List<MediaType> getSupportedMediaTypes() {
        return Collections.singletonList(MediaType.TEXT_PLAIN);
    }

    @Override
    public String read(String cls, HttpInputMessage inputMessage) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(inputMessage.getBody()));
        return reader.readLine();
    }

    @Override
    public void write(String t, MediaType contentType, HttpOutputMessage outputMessage) {
        throw new UnsupportedOperationException();
    }
}

// 注册转换器
public class WebMvcConfig implements WebMvcConfigurer {

    @Override
    public void extendMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(new PlainStringHttpMessageConverter());
    }
}

通过这些方法,spring boot应用程序可以接受和处理非json格式的字符串作为@requestbody参数。

本篇关于《Spring Boot @RequestBody如何接收非JSON格式字符串参数?》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>