Rest自定义HTTP消息转换器Spring Boot 1.2.3

时间:2015-06-10 13:35:31

标签: spring spring-boot spring-4 spring-restcontroller spring-json

我想使用Rest,Json,Spring Boot 1.2.3和Spring 4创建HttpMessageConverter的自定义,但我的自定义HTTPMessageConverter'从未被调用过。

我已经执行了以下步骤:

1:创建了一个扩展AbstractHttpMessageConverter

的类
@Component
public class ProductConverter extends AbstractHttpMessageConverter<Employee>   {

public ProductConverter() {
     super(new MediaType("application", "json", Charset.forName("UTF-8")));     
     System.out.println("Created ");
}

@Override
protected boolean supports(Class<?> clazz) {
    return false;
}

@Override
protected Employee readInternal(Class<? extends Employee> clazz,
        HttpInputMessage inputMessage) throws IOException,
        HttpMessageNotReadableException {
    InputStream inputStream =  inputMessage.getBody();
    System.out.println("Test******");
    return null;
}

@Override
protected void writeInternal(Employee t,
        HttpOutputMessage outputMessage) throws IOException,
        HttpMessageNotWritableException {
    // TODO Auto-generated method stu   
}

}

2:我创建了一个配置类来注册HTTPMessageConverters

@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter{  
   @Override
   public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
     System.out.println("Configure Message Converters");
     converters.add(new ProductConverter());
     super.configureMessageConverters(converters);
     //super.extendMessageConverters(converters);
    }
 }

3:休息类方法

@RequestMapping(value="/{categoryId}" ,method=RequestMethod.POST, consumes="application/json")
@PreAuthorize("permitAll")
public ResponseEntity<ProductEntity>  saveProduct(@RequestBody Employee  employee , @PathVariable Long categoryId) {

    logger.log(Level.INFO, "Category Id: {0}" , categoryId);

    ResponseEntity<ProductEntity> responseEntity =
            new ResponseEntity<ProductEntity>(HttpStatus.OK);
    return responseEntity;
}

我的自定义HTTPMessageCoverter它已创建,但从未被调用过?我缺少配置或步骤吗?任何意见或建议表示赞赏。

在重写(AbstractHttpMessageConverter)类方法之后,我发现有两个用于实现多态性@JsonTypeInfo和@JsonSubTypes的注释。对于任何想要实现多态的人都可以使用这两个注释。

1 个答案:

答案 0 :(得分:3)

我相信您希望在扩展WebMvcConfigurerAdapter的配置类中使用configureMessageConverters方法配置这些消息转换器。我自己使用CSV内容转换器完成了这项工作。我已在下面提供了该代码。 This link也展示了一个例子。 This link也可能有所帮助。看起来在Spring配置中,配置东西的最佳位置并不总是很清楚。 :)如果有帮助,请告诉我。

@Configuration
public class ApplicationWebConfiguration extends WebMvcConfigurerAdapter {
     @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        super.configureMessageConverters(converters);
        converters.add(new CsvMessageConverter());
    }
}

您还需要修改您的supports()方法,以便为转换器支持的类返回true。请参阅the Spring doc for AbstractHttpMessageConverter supports method