我想编写自定义串并转换器用于在类型的请求的一些参数application/x-www-form-urlencoded
像类型的请求的情况下使用application/json
,与@JsonDeserialize(using = AbcDeserializer.class)
注释。 我使用的弹簧引导和杰克逊,但我想通了,杰克逊没有在这里使用。
我试图搞清楚默认春季反序列化对象如何。 但无法找到一个方法。
如何春季反序列化类型的请求application/x-www-form-urlencoded
默认?
我可以通过使用需要特殊处理的参数的一些注解覆盖这个反序列化,首选?
我的解决方案是基于自定义ConditionalGenericConverter
。 它的工作原理与@ModelAttribute
。 让我们来看看整个实现。
应用自举的例子。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;
import org.springframework.format.FormatterRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@SpringBootApplication
public class DemoApplication {
@Configuration
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addFormatters(FormatterRegistry registry) {
registry.addConverter(new Base64JsonToObjectConverter());
}
}
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
这是自定义注解。
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface Base64Encoded {
}
接下来,我们需要实现的转换器。 正如你所看到的,转换器将只String
- > Object
,其中Object
字段必须与被标注Base64Encoded
注解。
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.core.convert.ConversionFailedException;
import org.springframework.core.convert.TypeDescriptor;
import org.springframework.core.convert.converter.ConditionalGenericConverter;
import org.springframework.stereotype.Component;
import java.io.IOException;
import java.util.Base64;
import java.util.Collections;
import java.util.Set;
@Component
public class Base64JsonToObjectConverter implements ConditionalGenericConverter {
private final ObjectMapper objectMapper;
private final Base64.Decoder decoder;
public Base64JsonToObjectConverter() {
this.objectMapper = new ObjectMapper();
this.decoder = Base64.getDecoder();
}
@Override
public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) {
return targetType.hasAnnotation(Base64Encoded.class);
}
@Override
public Set<ConvertiblePair> getConvertibleTypes() {
return Collections.singleton(new ConvertiblePair(String.class, Object.class));
}
@Override
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
if (source == null) {
return null;
}
String string = (String) source;
try {
byte[] decodedValue = this.decoder.decode(string);
return this.objectMapper.readValue(decodedValue, targetType.getType());
} catch (IllegalArgumentException | IOException e) {
throw new ConversionFailedException(sourceType, targetType, source, e);
}
}
}
下面是(见注释字段)POJO的示例,并且REST控制器。
import com.example.demo.Base64Encoded;
public class MyRequest {
private String varA;
@Base64Encoded
private B varB;
public String getVarA() {
return varA;
}
public void setVarA(String varA) {
this.varA = varA;
}
public B getVarB() {
return varB;
}
public void setVarB(B varB) {
this.varB = varB;
}
}
import com.example.demo.domain.MyRequest;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DemoController {
@RequestMapping(path = "/test", method = RequestMethod.POST)
public MyRequest test(@ModelAttribute MyRequest myRequest) {
return myRequest;
}
}
文章来源: Custom deserializer for requests with content-type application/x-www-form-urlencoded in Spring Boot