|
|
@@ -2,6 +2,7 @@ package cn.iocoder.yudao.framework.mybatis.config;
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
+import cn.iocoder.yudao.framework.common.util.json.JsonUtils;
|
|
|
import cn.iocoder.yudao.framework.mybatis.core.handler.DefaultDBFieldHandler;
|
|
|
import com.baomidou.mybatisplus.annotation.DbType;
|
|
|
import com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration;
|
|
|
@@ -82,7 +83,11 @@ public class YudaoMybatisAutoConfiguration {
|
|
|
@Bean
|
|
|
public JacksonTypeHandler jacksonTypeHandler(List<ObjectMapper> objectMappers) {
|
|
|
// 特殊:设置 JacksonTypeHandler 的 ObjectMapper!
|
|
|
- JacksonTypeHandler.setObjectMapper(CollUtil.getFirst(objectMappers));
|
|
|
+ ObjectMapper objectMapper = CollUtil.getFirst(objectMappers);
|
|
|
+ if (objectMapper == null) {
|
|
|
+ objectMapper = JsonUtils.getObjectMapper();
|
|
|
+ }
|
|
|
+ JacksonTypeHandler.setObjectMapper(objectMapper);
|
|
|
return new JacksonTypeHandler(Object.class);
|
|
|
}
|
|
|
|