ES-springboot
[TOC] 前言 到目前为止,ES有4种客户端,分别是:Jest client、Rest client、Transport client、Node client...
[TOC] 前言 到目前为止,ES有4种客户端,分别是:Jest client、Rest client、Transport client、Node client...
kafka 的 server.properties 中加入 host.name=10.1.21.37, 不然springBoot连不上kafka 1.pom.xml <dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId> </dependency> 2.application.properties #============== kafka =================== # 指定kafka 代理地址,可以多个 spring.kafka.bootstrap-servers=10.1.21.37:9092 #=============== provider ======================= spring.kafka.producer.retries=2 # 每次批量发送消息的数量...
配置文件,application.yml spring: data: mongodb: database: JHT_CPR uri: mongodb://10.10.203.16:27017/JHT_CPR 工具类: public interface MongodbMapper<T> { public void save(String tableName, T entity); public void batchSave(String tableName, List<T> lists); // ... 这是接口,后面可以写很多 } 实现mongo工...
在application.properties 中添加配置文件 spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&allowMultiQueries=true spring.datasource.username=xkj spring.datasource.password=xiaokunji spring.datasource.initialSize=50 spring.datasource.minIdle=10 spring.datasource.maxActive=100 spring.datasource.maxWait=60000 mybatis.mapper-locations=classpath*:mapper/*Mapper.xml mybatis.type-aliases-package=com.xkj.demo.entity # 打印sql查询结果值 mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl #默认插入空值 mybatis.configuration.jdbc-type-for-null=null # 支持驼峰 mybatis.configuration.map-underscore-to-camel-case=true 注:扫描...
[TOC] 介绍 Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。总体目标是使客户端和文件系统作为服务器以同样的速度来更新。文件的...