Ale*_*ndr 2 java spring spring-mvc converters spring-boot
我有一个可以工作的c转换器:
public class StringToLongConverter implements Converter<String, Long> {
@Override
public Long convert(String source) {
Long myDecodedValue = ...
return myDecodedValue;
}
}
Run Code Online (Sandbox Code Playgroud)
在网络配置中,我有:
@Override
public void addFormatters (FormatterRegistry registry) {
registry.addConverter(new StringToLongConverter());
}
Run Code Online (Sandbox Code Playgroud)
一切都很好,但它适用于所有控制器,我只需要为某些控制器执行它。
//I need this controller to get myvalue from converter
@RequestMapping(value = "{myvalue}", method = RequestMethod.POST)
public ResponseEntity myvalue1(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
//I need this controller to get myvalue without converter
@RequestMapping(value = "{myvalue}", method = RequestMethod.POST)
public ResponseEntity myvalue2(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
Run Code Online (Sandbox Code Playgroud)
我们可以指定哪些转换器或参数应该与自定义转换器一起使用,哪些不应该?
通常来说,一个注册Converter绑定到一个输入源和一个输出目的地。在你的情况下<String, Long>。您使用的默认 Spring 转换器将在每个匹配的源-目标对上应用转换。
为了更好地控制何时应用转换,ConditionalGenericConverter可以使用 a 。该接口包含3个方法:
boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType), 确定是否应应用转换
Set<ConvertiblePair> getConvertibleTypes() 返回一组可以应用转换的源-目标对
Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) 实际转换发生的方法。
我已经建立了一个小的 Spring 项目来使用 a ConditionalGenericConverter:
需要Conversion.java:
// RequiresConversion is a custom annotation solely used in this example
// to annotate an attribute as "convertable"
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface RequiresConversion {
}
Run Code Online (Sandbox Code Playgroud)
SomeConverter.java:
@Component
public class SomeConverter implements ConditionalGenericConverter {
@Override
public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) {
// Verify whether the annotation is present
return targetType.getAnnotation(RequiresConversion.class) != null;
}
@Override
public Set<ConvertiblePair> getConvertibleTypes() {
return Collections.singleton(new ConvertiblePair(String.class, Long.class));
}
@Override
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
// Conversion logic here
// In this example it strips "value" from the source string
String sourceValue = ((String) source).replace("value", "");
return Long.valueOf(sourceValue);
}
}
Run Code Online (Sandbox Code Playgroud)
SomeController.java:
@RestController
public class SomeController {
// The path variable used will be converted, resulting in the "value"-prefix
// being stripped in SomeConverter
// Notice the custom '@RequiresConversion' annotation
@GetMapping(value = "/test/{myvalue}")
public ResponseEntity myvalue(@RequiresConversion @PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
// As the @RequiresConversion annotation is not present,
// the conversion is not applied to the @PathVariable
@GetMapping(value = "/test2/{myvalue}")
public ResponseEntity myvalue2(@PathVariable Long myvalue) {
return new ResponseEntity<>(HttpStatus.OK);
}
}
Run Code Online (Sandbox Code Playgroud)
转换将发生在http://localhost:8080/test/value123 上,产生一个123Long 值。但是,由于@RequiresConversion第二个映射中不存在自定义注释,因此将跳过http://localhost:8080/test2/value123上的转换。
您还可以通过它重命名为逆注释SkipConversion和验证注释是否是缺席的matches()方法。
希望这可以帮助!
| 归档时间: |
|
| 查看次数: |
2338 次 |
| 最近记录: |