課程
/后端開發
/Java
/Springboot + ElasticSearch 構建博客檢索系統
表數據能提供下嗎大佬
2021-12-26
源自:Springboot + ElasticSearch 構建博客檢索系統 5-4
正在回答
DROP TABLE IF EXISTS `t_blog`;
CREATE TABLE `t_blog` (
? `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
? `title` varchar(60) DEFAULT NULL COMMENT '博客標題',
? `author` varchar(60) DEFAULT NULL COMMENT '博客作者',
? `content` mediumtext COMMENT '博客內容',
? `create_time` datetime DEFAULT NULL COMMENT '創建時間',
? `update_time` datetime DEFAULT NULL COMMENT '更新時間',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of t_blog
INSERT INTO `t_blog` VALUES ('1', 'Springboot 為什么這', 'bywind', '沒錯 Springboot ', '2019-12-08 01:44:29', '2019-12-08 01:44:34');
INSERT INTO `t_blog` VALUES ('3', 'Springboot 中 Redis', 'bywind', 'Spring Boot', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('4', 'Springboot 中如何優化', 'bywind', '優化大數據', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('5', 'Springboot 消息隊列', 'bywind', '消息隊列', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('6', 'Docker Compose + Springboot', 'bywind', 'docker容器', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('7', 'Springboot整合ElasticSearch', 'fengzf', 'Springboot + ElasticSearch 構建博客檢索系統', '2022-01-20 10:37:07', '2022-01-20 10:37:10');
舉報
Springboot + ElasticSearch 構建個人博客檢索系統
1 回答老師可以提供下插入測試數據的sql嗎
1 回答數據庫表沒有嗎?
3 回答logstash 只能同步增加的數據,不能同步更新和刪除的數據
2 回答ES用URI方式怎么聚合啊大佬們?
1 回答模糊匹配, 只能查一條數據出來
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2022-01-28
DROP TABLE IF EXISTS `t_blog`;
CREATE TABLE `t_blog` (
? `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
? `title` varchar(60) DEFAULT NULL COMMENT '博客標題',
? `author` varchar(60) DEFAULT NULL COMMENT '博客作者',
? `content` mediumtext COMMENT '博客內容',
? `create_time` datetime DEFAULT NULL COMMENT '創建時間',
? `update_time` datetime DEFAULT NULL COMMENT '更新時間',
? PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4;
-- ----------------------------
-- Records of t_blog
-- ----------------------------
INSERT INTO `t_blog` VALUES ('1', 'Springboot 為什么這', 'bywind', '沒錯 Springboot ', '2019-12-08 01:44:29', '2019-12-08 01:44:34');
INSERT INTO `t_blog` VALUES ('3', 'Springboot 中 Redis', 'bywind', 'Spring Boot', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('4', 'Springboot 中如何優化', 'bywind', '優化大數據', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('5', 'Springboot 消息隊列', 'bywind', '消息隊列', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('6', 'Docker Compose + Springboot', 'bywind', 'docker容器', '2019-12-08 01:44:29', '2019-12-08 01:44:29');
INSERT INTO `t_blog` VALUES ('7', 'Springboot整合ElasticSearch', 'fengzf', 'Springboot + ElasticSearch 構建博客檢索系統', '2022-01-20 10:37:07', '2022-01-20 10:37:10');