課程
/后端開發(fā)
/Java
/Springboot + ElasticSearch 構(gòu)建博客檢索系統(tǒng)
表數(shù)據(jù)能提供下嗎大佬
2021-12-26
源自:Springboot + ElasticSearch 構(gòu)建博客檢索系統(tǒng) 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 '博客內(nèi)容',
? `create_time` datetime DEFAULT NULL COMMENT '創(chuàng)建時間',
? `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 中如何優(yōu)化', 'bywind', '優(yōu)化大數(shù)據(jù)', '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 構(gòu)建博客檢索系統(tǒng)', '2022-01-20 10:37:07', '2022-01-20 10:37:10');
舉報
Springboot + ElasticSearch 構(gòu)建個人博客檢索系統(tǒng)
1 回答老師可以提供下插入測試數(shù)據(jù)的sql嗎
1 回答數(shù)據(jù)庫表沒有嗎?
3 回答logstash 只能同步增加的數(shù)據(jù),不能同步更新和刪除的數(shù)據(jù)
2 回答ES用URI方式怎么聚合啊大佬們?
1 回答模糊匹配, 只能查一條數(shù)據(jù)出來
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
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 '博客內(nèi)容',
? `create_time` datetime DEFAULT NULL COMMENT '創(chuàng)建時間',
? `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 中如何優(yōu)化', 'bywind', '優(yōu)化大數(shù)據(jù)', '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 構(gòu)建博客檢索系統(tǒng)', '2022-01-20 10:37:07', '2022-01-20 10:37:10');