当前位置: 首页 > news >正文

怎么看网站开发语言是哪种电商培训机构哪家好

怎么看网站开发语言是哪种,电商培训机构哪家好,网络推广策划案,做资讯网站文章目录 SpringBoot项目引入Canal依赖配置文件项目结构设置监听类其余类、接口内容启动类实体类Controller类Mapper接口Serice接口 运行测试 开始之前请确认docker中已运行mysql与canal容器#xff0c;并完成了监听binlog配置 未完成可移步#xff1a; Docker部署Canal监听… 文章目录 SpringBoot项目引入Canal依赖配置文件项目结构设置监听类其余类、接口内容启动类实体类Controller类Mapper接口Serice接口 运行测试 开始之前请确认docker中已运行mysql与canal容器并完成了监听binlog配置 未完成可移步 Docker部署Canal监听MySQL的binlog SpringBoot项目 本次在SpringBoot整合Easy-ES实现对ES的基础操作项目基础上进行操作 此部分操作请移步SpringBoot整合Easy-ES实现对ES操作 引入Canal依赖 dependencygroupIdtop.javatool/groupIdartifactIdcanal-spring-boot-starter/artifactIdversion1.2.1-RELEASE/version/dependency配置文件 新增以下内容 注意修改server换成自己的canal地址端口号 canal:server: canal地址:11111destination: example项目结构 设置监听类 CanalTable注解是监听的表名实现EntryHandler接口 重写监听到mysql增删改操作时这里的进行自定义操作方法也都是通过Easy-ES实现 CanalTable(document) Component public class DocumentHandler implements EntryHandlerDocument {Resourceprivate IDocumentService documentService;/*** mysql中数据有新增时自动执行* param document 新增的数据*/Overridepublic void insert(Document document) {try {documentService.addData(document);} catch (Exception e) {e.printStackTrace();}}/*** mysql中数据有修改时自动执行* param before 修改前的数据* param after 修改后的数据*/Overridepublic void update(Document before, Document after) {documentService.updateData(after);}/*** mysql中数据有删除时自动执行* param document 要删除的数据*/Overridepublic void delete(Document document) {documentService.deleteData(document);} }其余类、接口内容 启动类 添加扫描ESMapper的注解指定路径 EsMapperScan(com.mine.easyEs.mapper)实体类 Data public class Document {Id/*** es中的唯一id*/private String id;/*** 文档标题*/private String title;/*** 文档内容*/private String content;/*** 创建时间*/private Date createTime; }Controller类 包括对索引操作和对数据进行操作的接口 RestController RequestMapping(/ee) RequiredArgsConstructor(onConstructor __(Autowired)) public class DocumentController {private final IDocumentService documentService;/*** 创建索引* return 结果信息* throws Exception*/GetMapping(/createIndex)public String createIndex() throws Exception {return documentService.createIndex();}/*** 删除索引* return 结果信息*/GetMapping(/deleteIndex)public String deleteIndex(){return documentService.deleteIndex();}/*** 查询ES所有数据* return 查询Document结果对象集合*/GetMapping(/findAll)public ListDocument findAll(){return documentService.findAllData();}/*** ES新增数据* param document 新增数据对象* return 结果信息* throws Exception*/GetMapping(/add)public String addData(Document document) throws Exception {return documentService.addData(document);}/*** 修改ES数据* param document 修改数据对象*/GetMapping(/update)public String updateData(Document document){return documentService.updateData(document);}/*** 根据id删除ES数据* param id 需要删除的数据的id* return*/GetMapping(/delete)public String deleteData(String id){return documentService.deleteDataById(id);}/*** 分词匹配查询content字段* param value 查询内容* return*/GetMapping(/match)public ListDocument findMatch(String value){return documentService.findMatch(value);}}Mapper接口 继承BaseMapper,整体操作都与MybatisPlus类似 public interface DocumentMapper extends BaseEsMapperDocument { }Serice接口 public interface IDocumentService {/*** 查询ES所有数据* return 查询Document结果对象集合*/ListDocument findAllData();/*** 创建索引* return 结果信息* throws Exception*/String createIndex() throws Exception;/*** 删除索引* return 结果信息*/String deleteIndex();/*** ES新增数据* param document 新增数据实体类* return 结果信息* throws Exception*/String addData(Document document) throws Exception;/*** 根据id删除ES数据* param id 需要删除的数据的id* return*/String deleteDataById(String id);String deleteData(Document document);/*** 修改ES数据* param document 修改数据对象*/String updateData(Document document);/*** 分词匹配查询content字段* param value 查询内容* return*/ListDocument findMatch(String value); } Service实现类 Service RequiredArgsConstructor(onConstructor __(Autowired)) public class DocumentServiceImpl implements IDocumentService {private final DocumentMapper documentMapper;/*** 查询ES所有数据* return 查询Document结果对象集合*/Overridepublic ListDocument findAllData() {LambdaEsQueryWrapperDocument wrapper new LambdaEsQueryWrapper();wrapper.matchAllQuery();return documentMapper.selectList(wrapper);}/*** 创建索引* return 结果信息* throws Exception*/Overridepublic String createIndex() throws Exception {StringBuilder msg new StringBuilder();String indexName Document.class.getSimpleName().toLowerCase();boolean existsIndex documentMapper.existsIndex(indexName);if (existsIndex){throw new Exception(Document实体对应索引已存在,删除索引接口deleteIndex);}boolean success documentMapper.createIndex();if (success){msg.append(Document索引创建成功);}else {msg.append(索引创建失败);}return msg.toString();}/*** 删除索引* return 结果信息*/Overridepublic String deleteIndex() {StringBuilder msg new StringBuilder();String indexName Document.class.getSimpleName().toLowerCase();if (documentMapper.deleteIndex(indexName)){msg.append(删除成功);}else {msg.append(删除失败);}return msg.toString();}/*** ES新增数据* param document 新增数据实体类* return 结果信息* throws Exception*/Overridepublic String addData(Document document) throws Exception {if (StringUtils.isEmpty(document.getTitle()) || StringUtils.isEmpty(document.getContent())) {throw new Exception(请补全title及content数据);}document.setCreateTime(new Date());documentMapper.insert(document);return Added successfully;}/*** 根据id删除ES数据* param id 需要删除的数据的id* return*/Overridepublic String deleteDataById(String id) {documentMapper.deleteById(id);return Success;}Overridepublic String deleteData(Document document) {documentMapper.deleteById(document.getId());return Success;}/*** 修改ES数据* param document 修改数据对象*/Overridepublic String updateData(Document document) {documentMapper.updateById(document);return Success;}/*** 分词匹配查询content字段* param value 查询内容* return*/Overridepublic ListDocument findMatch(String value) {LambdaEsQueryWrapperDocument wrapper new LambdaEsQueryWrapper();wrapper.match(Document::getContent,value);wrapper.orderByDesc(Document::getCreateTime);ListDocument documents documentMapper.selectList(wrapper);return documents;} }运行 可以看到正在监听只不过目前我们没有对数据库进行操作。 测试 我们在数据库新增一条数据 此时插入的这条数据被监听到了 通过测试方法查看ES中是否插入了这条数据 Testpublic void testSelect() {// 测试查询String title 3;Document document EsWrappers.lambdaChainQuery(documentMapper).eq(Document::getTitle, title).one();System.out.println(document);Assertions.assertEquals(title,document.getTitle());}查到了在mysql新插入的这条数据 数据同步成功
http://www.hkea.cn/news/14474838/

相关文章:

  • 上海做网站比较好的公司有哪些网站管理系统安装 -
  • 建设导航网站wordpress回收站 恢复
  • 做网站还需要兼容ie6吗无锡seo优化
  • 百度站长怎么做网站维护安徽网站建设维护
  • 响应式网站代理动漫制作专业软件
  • 做网站比较专业的有哪些公司网站设计中级
  • 织梦网站怎么做索引地图校园网站建设管理制度
  • 建立传媒公司网站司局网站维护廉政风险建设
  • 网站开发客户挖掘长治长治那有做网站的
  • 全是广告的网站清新太和做网站
  • 推荐几个响应式网站做参考商务信息网官网
  • 网站的备案流程wordpress主题 missoften
  • 龙华做企业网站建立网站需要多少钱
  • 网站联系我们模板大学校园门户网站建设
  • 网站keywords企业发展历程网站
  • 西安做网站报价微信广告服务商平台
  • 广西住房和城乡建设部网站青海营销型网站建设
  • 网站界面版式网站域名被黑
  • 广州网站建设网站制作公司网页设计师培训和继续教育的机会
  • 鄱阳网站建设国产安卓开发工具
  • 织梦网站地图制作教程大连华南网站制作公司
  • 新兴县城乡建设局网站登录什么是电商?电商怎么做
  • 统计网站访客人数seo顾问服务
  • 怎样做化妆品公司网站做网络推广一般是什么专业
  • 普洱市住房和城乡建设局信息公开网站广西住房与城乡建设部网站
  • 怎么用eclipse做网站开发免费ppt素材库大全app
  • 沈阳创新网站建设报价怎么做网站缩略图
  • 小说网站怎么建设百度关键词优化推广
  • 我想开个网站网站手机版如何制作
  • 企业网站官网建设企业做网站要注意些什么