mybatis-plus读取JSON类型
2020-05-06 16:14:51来源:博客园 阅读 ()
mybatis-plus读取JSON类型
mybatis-plus读取JSON类型。摘要:mybatis-plus读取JSON类型。
本文总共三个步骤:
1、在数据库表定义JSON字段;
2、在实体类加上@TableName(autoResultMap = true)、在JSON字段映射的属性加上@TableField(typeHandler = FastjsonTypeHandler.class);
3、建一些业务代码进行测试;
在数据库表定义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" }
]
}
]
原文链接:https://www.cnblogs.com/liangweiping/p/12835377.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 引入mybatis-plus报 Invalid bound statement错误怎么办,动 2020-05-28
- Dubbo 2.7.7 发布,FastJson 升级了! 2020-05-25
- HWPFDocument读取doc,wps文档(含图片读取) 2020-05-24
- Thymeleaf读取国际化文本时出现??xxxxxx_zh_CN??问题 2020-05-19
- Java怎么从这四个位置读取配置文件Properties(普通文件系统 2020-05-09
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash