04 2020 档案

摘要:1、scroll深度搜索,查询符合条件的所有数据。如果不是scroll深度搜索默认之后返回20条数据,如果指定分页就返回分页的条数。 package com.example.demo; import org.elasticsearch.action.search.SearchResponse; im 阅读全文
posted @ 2020-04-13 22:34 N神3 阅读(2572) 评论(0) 推荐(0) 编辑
摘要:一、@SpringBootApplication是一个复合注解或派生注解,在@SpringBootApplication中有一个注解@EnableAutoConfiguration,该注解开启自动配置。 1、@SpringBootApplication组合注解 二、@EnableAutoConfig 阅读全文
posted @ 2020-04-08 23:19 N神3 阅读(6316) 评论(0) 推荐(0) 编辑
摘要:1、kafka服务器防火墙需要关闭,否则消费者监听不到新消息 Linux查看防火墙是否关闭命令:fireware-cmd -state Linux关闭防火墙命令:systemctl stop fireware.service 阅读全文
posted @ 2020-04-04 14:54 N神3 阅读(192) 评论(0) 推荐(0) 编辑
摘要:1、分页查询 /** * Dao层 */public interface TestMapper { //mysql分页查询 @Select("${sql} limit #{start},#{size}") public List<Map> getPageList(@Param("sql") Stri 阅读全文
posted @ 2020-04-02 23:46 N神3 阅读(198) 评论(0) 推荐(0) 编辑