Browse Source

修复json序列化bug,修复responsedto bug

NorthLan 7 years ago
parent
commit
6bfeb2b87d

+ 2 - 1
zen-core/src/main/kotlin/com/gxzc/zen/common/config/response/DynamicFilterResponseBodyAdvice.kt

@@ -1,5 +1,6 @@
 package com.gxzc.zen.common.config.response
 
+import com.fasterxml.jackson.databind.DeserializationFeature
 import com.fasterxml.jackson.databind.ObjectMapper
 import com.gxzc.zen.common.config.response.annotation.ZenResponseFilter
 import com.gxzc.zen.common.config.response.annotation.ZenResponseFilters
@@ -29,7 +30,7 @@ class DynamicFilterResponseBodyAdvice : AbstractMappingJacksonResponseBodyAdvice
     private lateinit var converter: MappingJackson2HttpMessageConverter
 
     override fun supports(returnType: MethodParameter, converterType: Class<out HttpMessageConverter<*>>): Boolean {
-        converter.objectMapper = ObjectMapper()
+        converter.objectMapper = ObjectMapper().apply { configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) }
         return super.supports(returnType, converterType) &&
                 (returnType.getMethodAnnotation(ZenResponseFilter::class.java) != null
                         || returnType.getMethodAnnotation(ZenResponseFilters::class.java) != null)

+ 2 - 1
zen-core/src/main/kotlin/com/gxzc/zen/common/config/response/ZenJsonSerializer.kt

@@ -1,5 +1,6 @@
 package com.gxzc.zen.common.config.response
 
+import com.fasterxml.jackson.databind.DeserializationFeature
 import com.fasterxml.jackson.databind.ObjectMapper
 import com.gxzc.zen.common.config.response.annotation.ZenResponseFilter
 import kotlin.reflect.KClass
@@ -11,7 +12,7 @@ import kotlin.reflect.KClass
  * @url https://noahlan.com
  */
 class ZenJsonSerializer {
-    val mapper = ObjectMapper()
+    val mapper = ObjectMapper().apply { configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) }
     val jacksonFilter = ZenJacksonJsonFilter()
 
     fun filter(clazz: KClass<*>?, include: Array<String>?, filter: Array<String>?) {

+ 1 - 1
zen-core/src/main/kotlin/com/gxzc/zen/common/dto/ResponseDto.kt

@@ -19,7 +19,7 @@ class ResponseDto {
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
     var time: Date = Dates.today
 
-    fun data(data: Any): ResponseDto {
+    fun data(data: Any?): ResponseDto {
         this.data = data
         return this
     }

+ 1 - 1
zen-core/src/main/kotlin/com/gxzc/zen/common/util/SpringContextHolder.kt

@@ -6,7 +6,7 @@ import org.springframework.context.ApplicationContextAware
 import org.springframework.stereotype.Component
 
 /**
- *
+ * Spring Context Holder
  * @author NorthLan
  * @date 2018/2/1
  * @url https://noahlan.com