|
@@ -2,16 +2,16 @@ package com.gxzc.zen.common.config.request
|
|
|
|
|
|
import com.fasterxml.jackson.databind.DeserializationFeature
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper
|
|
|
+import com.gxzc.zen.common.config.request.annotation.KVTypeEnum
|
|
|
import com.gxzc.zen.common.config.request.annotation.ZenRequestTypes
|
|
|
import com.gxzc.zen.common.dto.RequestDto
|
|
|
-import com.gxzc.zen.common.exception.ZenException
|
|
|
-import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
import org.springframework.core.MethodParameter
|
|
|
import org.springframework.http.HttpInputMessage
|
|
|
import org.springframework.http.converter.HttpMessageConverter
|
|
|
import org.springframework.web.bind.annotation.ControllerAdvice
|
|
|
import org.springframework.web.servlet.mvc.method.annotation.RequestBodyAdviceAdapter
|
|
|
import java.lang.reflect.Type
|
|
|
+import java.util.*
|
|
|
|
|
|
/**
|
|
|
*
|
|
@@ -35,8 +35,20 @@ class ZenRequestBodyAdvice : RequestBodyAdviceAdapter() {
|
|
|
}
|
|
|
val typedBody = body as RequestDto
|
|
|
annotation.value.forEach {
|
|
|
- val data = typedBody[it.key] ?: throw ZenException(ZenExceptionEnum.REQUEST_NULL)
|
|
|
- typedBody[it.key] = mapper.convertValue(data, it.value.java)
|
|
|
+ if (typedBody.containsKey(it.key)) {
|
|
|
+ val data = typedBody[it.key]
|
|
|
+ when (it.type) {
|
|
|
+ KVTypeEnum.OBJECT -> {
|
|
|
+ typedBody[it.key] = mapper.convertValue(data, it.value.java)
|
|
|
+ }
|
|
|
+ KVTypeEnum.ARRAY -> {
|
|
|
+ typedBody[it.key] = mapper.convertValue(data, mapper.typeFactory.constructArrayType(it.value.java))
|
|
|
+ }
|
|
|
+ KVTypeEnum.LIST -> {
|
|
|
+ typedBody[it.key] = mapper.convertValue(data, mapper.typeFactory.constructCollectionType(LinkedList::class.java, it.value.java))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
return super.afterBodyRead(body, inputMessage, parameter, targetType, converterType)
|
|
|
}
|