我有这个枚举:
public enum SortEnum {
asc, desc;
}
我想用作休息请求的参数:
@RequestMapping(value = "/events", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public List<Event> getEvents(@RequestParam(name = "sort", required = false) SortEnum sort) {
我发送这些请求时工作正常
/events
/events?sort=asc
/events?sort=desc
但是当我寄出时:
/events?sort=somethingElse
我在控制台中收到500回复和此消息:
2016-09-29 17:20:51.600 DEBUG 5104 --- [ XNIO-2 task-6] com.myApp.aop.logging.LoggingAspect : Enter: com.myApp.web.rest.errors.ExceptionTranslator.processRuntimeException() with argument[s] = [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type [java.lang.String] to required type [com.myApp.common.SortEnum]; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@org.springframework.web.bind.annotation.RequestParam com.myApp.common.SortEnum] for value 'somethingElse'; nested exception is java.lang.IllegalArgumentException: No enum constant com.myApp.common.SortEnum.somethingElse]
2016-09-29 17:20:51.600 DEBUG 5104 --- [ XNIO-2 task-6] com.myApp.aop.logging.LoggingAspect : Exit: com.myApp.web.rest.errors.ExceptionTranslator.processRuntimeException() with result = <500 Internal Server Error,com.myApp.web.rest.errors.ErrorVM@1e3343c9,{}>
2016-09-29 17:20:51.601 WARN 5104 --- [ XNIO-2 task-6] .m.m.a.ExceptionHandlerExceptionResolver : Resolved exception caused by Handler execution: org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type [java.lang.String] to required type [com.myApp.common.SortEnum]; nested exception is org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@org.springframework.web.bind.annotation.RequestParam com.myApp.common.SortEnum] for value 'somethingElse'; nested exception is java.lang.IllegalArgumentException: No enum constant com.myApp.common.SortEnum.somethingElse
有没有办法阻止spring抛出这些异常并将枚举设置为null?
编辑
Strelok接受的答案有效。但是,我决定处理MethodArgumentTypeMismatchException。
@ControllerAdvice
public class ExceptionTranslator {
@ExceptionHandler(MethodArgumentTypeMismatchException.class)
@ResponseBody
public ResponseEntity<Object> handleMethodArgumentTypeMismatchException(MethodArgumentTypeMismatchException e) {
Class<?> type = e.getRequiredType();
String message;
if(type.isEnum()){
message = "The parameter " + e.getName() + " must have a value among : " + StringUtils.join(type.getEnumConstants(), ", ");
}
else{
message = "The parameter " + e.getName() + " must be of type " + type.getTypeName();
}
return buildResponse(HttpStatus.UNPROCESSABLE_ENTITY, message);
}
答案 0 :(得分:42)
您可以创建一个自定义转换器,当提供无效值时,该转换器将返回null
而不是异常。
这样的事情:
@Configuration
public class MyConfig extends WebMvcConfigurationSupport {
@Override
public FormattingConversionService mvcConversionService() {
FormattingConversionService f = super.mvcConversionService();
f.addConverter(new MyCustomEnumConverter());
return f;
}
}
简单的转换器可能如下所示:
public class MyCustomEnumConverter implements Converter<String, SortEnum> {
@Override
public SortEnum convert(String source) {
try {
return SortEnum.valueOf(source);
} catch(Exception e) {
return null; // or SortEnum.asc
}
}
}
答案 1 :(得分:20)
您需要执行以下操作
@InitBinder
public void initBinder(WebDataBinder dataBinder) {
dataBinder.registerCustomEditor(YourEnum.class, new YourEnumConverter());
}
请参阅以下内容:https://machiel.me/post/java-enums-as-request-parameters-in-spring-4/
答案 2 :(得分:10)
如果您使用的是Spring Boot,请this is the reason不要使用WebMvcConfigurationSupport
。
最佳做法是,您应该实现接口org.springframework.core.convert.converter.Converter
,并带有注释@Component
。然后,Spring Boot将自动加载所有Converter
的bean。 Spring Boot code
@Component
public class GenderEnumConverter implements Converter<String, GenderEnum> {
@Override
public GenderEnum convert(String value) {
return GenderEnum.of(Integer.valueOf(value));
}
}
答案 3 :(得分:4)
目前提供的答案尚不完整。这是一个循序渐进的答案示例,对我有用: -
1st在端点签名中定义枚举(订阅类型) 示例强>:
public ResponseEntity v1_getSubscriptions(@PathVariable String agencyCode,
@RequestParam(value = "uwcompany", required = false) String uwCompany,
@RequestParam(value = "subscriptiontype", required = false) SubscriptionType subscriptionType,
@RequestParam(value = "alert", required = false) String alert,
2nd定义一个自定义属性编辑器,用于将字符串转换为枚举:
import java.beans.PropertyEditorSupport;
public class SubscriptionTypeEditor extends PropertyEditorSupport {
public void setAsText(String text) {
try {
setValue(SubscriptionType.valueOf(text.toUpperCase()));
} catch (Exception ex) {
setValue(null);
}
}
}
3向控制器注册属性编辑器:
@InitBinder ("subscriptiontype")
public void initBinder(WebDataBinder dataBinder) {
dataBinder.registerCustomEditor(SubscriptionType.class, new SubscriptionTypeEditor());
}
从字符串到枚举的翻译现在应该完美地发生。
答案 4 :(得分:3)
如果您有多个枚举,则如果您遵循其他答案,最终将为每个答案创建一个转换器。
这是适用于所有枚举的解决方案。
在这种情况下,Converter或PropertyEditorSupport不适用,因为它们不允许我们知道目标类。
在此示例中,我使用了Jackson ObjectMapper,但是您可以通过反射对静态方法的调用来替换此部分,或将对values()的调用移至转换器。
@Component
public class JacksonEnumConverter implements GenericConverter {
private ObjectMapper mapper;
private Set<ConvertiblePair> set;
@Autowired
public JacksonEnumConverter(ObjectMapper mapper) {
set = new HashSet<>();
set.add(new ConvertiblePair(String.class, Enum.class));
this.mapper = mapper;
}
@Override
public Set<ConvertiblePair> getConvertibleTypes() {
return set;
}
@Override
public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
if (source == null) {
return null;
}
try {
return mapper.readValue("\"" + source + "\"", targetType.getType());
} catch (IOException e) {
throw new InvalidFieldException(targetType.getName(),source.toString());
}
}
}
在这种情况下,因为我使用的是杰克逊(Jackson),枚举类必须有一个用@JsonCreator注释的静态方法,以便我可以使用值而不是常量名称进行映射:
public enum MyEnum {
VAL_1("val-1"), VAL_2("val-2");
private String value;
MyEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
public static MyEnum fromValue(String value) {
for (MyEnum e : values()) {
if (e.value.equalsIgnoreCase(value)) {
return e;
}
}
throw new InvalidFieldException("my-enum", value);
}
}
与其返回null,不如抛出一个异常更好。
答案 5 :(得分:0)
如果您已经实现了 WebMvcConfigurer ,而不是 WebMvcConfigurationSupport ,则可以通过实现addFormatters方法来添加新转换器
@Override
public void addFormatters(FormatterRegistry registry) {
registry.addConverter(new MyCustomEnumConverter());
}
答案 6 :(得分:0)
您可以在 ENUM 中使用 @JsonValue
注释。检查这个 - https://www.baeldung.com/jackson-serialize-enums
答案 7 :(得分:-1)
您可以使用String
代替SortEnum
参数
@RequestParam(name = "sort", required = false) String sort
并使用
进行转换SortEnum se;
try {
se = SortEnum.valueOf(source);
} catch(IllegalArgumentException e) {
se = null;
}
在getEvents(...)终结点方法内部失去了优雅,但获得了对转换和可能的错误处理的更多控制。