文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

mybatis plus实体类中字段映射mysql中的json格式方式

2024-04-02 19:55

关注

mybatis plus实体类中字段映射mysql中的json格式

1.实体类中有个属性是其他对象

或者是List;在数据库中存储时使用的是mysql的json格式,此时可以用mybatis plus的一个注解


@TableField(typeHandler = JacksonTypeHandler.class) 

在这里插入图片描述


@TableField(typeHandler = JacksonTypeHandler.class)

这样在存入是就可以把对象自动转换为json格式,

2.那么取出时怎么进行映射呢,有分为两种情况

在这里插入图片描述


@Data
@Accessors(chain = true)
@TableName(value = "wx_user",autoResultMap = true)

mybatis-plus 实体 json 处理

本文总共三个步骤

在数据库表定义JSON字段


CREATE TABLE `extra_info`  (
  `id` int(10) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  `extra_object` json NULL,
  `extra_list` json NULL,
  `extra_array` json NULL
); 
INSERT INTO `extra_info` VALUES (1, '{\"id\": 1, \"name\": \"2\"}', '[{\"id\": 1, \"name\": \"2\"}]', '[{\"id\": 1, \"name\": \"2\"}]');

在实体类加上@TableName(autoResultMap = true)、在JSON字段映射的属性加上@TableField(typeHandler = FastjsonTypeHandler.class)


import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler; 
import java.io.Serializable;
import java.util.List;
 
@TableName(autoResultMap = true)
public class ExtraInfo implements Serializable {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
 
    @TableField(typeHandler = FastjsonTypeHandler.class)
    private ExtraNode extraObject;
 
    @TableField(typeHandler = FastjsonTypeHandler.class)
    private List<ExtraNode> extraList;
 
    @TableField(typeHandler = FastjsonTypeHandler.class)
    private ExtraNode[] extraArray;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public ExtraNode getExtraObject() {
        return extraObject;
    }
 
    public void setExtraObject(ExtraNode extraObject) {
        this.extraObject = extraObject;
    }
 
    public List<ExtraNode> getExtraList() {
        return extraList;
    }
 
    public void setExtraList(List<ExtraNode> extraList) {
        this.extraList = extraList;
    }
 
    public ExtraNode[] getExtraArray() {
        return extraArray;
    }
 
    public void setExtraArray(ExtraNode[] extraArray) {
        this.extraArray = extraArray;
    }
}

建一些业务代码进行测试


import java.io.Serializable; 
public class ExtraNode implements Serializable { 
    private Integer id;
    private String name; 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
}

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
 
@Repository
public interface ExtraInfoMapper extends BaseMapper<ExtraInfo> {
}

import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; 
import java.util.List;
 
@RestController
@RequestMapping("/test")
public class TestController { 
    @Autowired
    private ExtraInfoMapper extraInfoMapper;
 
    @GetMapping
    public List<ExtraInfo> listAll() {
        return this.extraInfoMapper.selectList(new LambdaQueryWrapper<>());
    }
}

运行结果:

[
  {
    "id": 1,
    "extraObject": { "id": 1, "name": "2" },
    "extraList": [
      { "name": "2", "id": 1 }
    ],
    "extraArray": [
      { "id": 1, "name": "2" }
    ]
  }
]

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯