上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 60 下一页

2022年2月8日

ElastaticSearch -- es之Filters aggregation 先过滤再聚合

摘要: 使用场景 使用es时,有时我们需要先过滤后再聚合,但如果直接在query的filter中过滤,不止会影响到一个聚合,还会影响到其他的聚合结果。 比如,我们想要统计深圳市某个品牌的总销售额,以及该品牌的女款衣服的销售额。 直接filter过滤款式为女,那么就无法统计总销售额了。 这时可以使用Filte 阅读全文

posted @ 2022-02-08 20:31 乐之者v 阅读(2830) 评论(0) 推荐(2) 编辑

2022年2月7日

RateLimiter限流

摘要: 限流算法 https://blog.csdn.net/sinat_32502451/article/details/139223748 注意: RateLimiter限流属于单体版的限流,如果是高并发的分布式系统,需要用分布式限流。 Maven依赖包: <dependency> <groupId>c 阅读全文

posted @ 2022-02-07 18:03 乐之者v 阅读(254) 评论(0) 推荐(0) 编辑

2022年1月26日

Dubbo使用Rest开发服务

摘要: 使用场景 可以基于标准的Java REST API——JAX-RS 2.0(Java API for RESTful Web Services的简写), 也就是REST的api和注解,为dubbo提供调用支持。 Service示例 在Dubbo使用Rest时,Service接口,作用类似于Sprin 阅读全文

posted @ 2022-01-26 22:07 乐之者v 阅读(682) 评论(0) 推荐(0) 编辑

2022年1月25日

Intellij Idea新建 SpringBoot 项目

摘要: SpringBoot: SpringBoot开发项目非常方便,无需配置,开箱即用。可以用Intellij Idea快速新建 SpringBoot 项目。 具体过程: 点击Intellij Idea左上角的 File--> New --> Project -->Spring Initializr 如果 阅读全文

posted @ 2022-01-25 19:33 乐之者v 阅读(384) 评论(0) 推荐(0) 编辑

druid对数据库密码进行加密解密

摘要: 使用场景 数据库密码直接使用明文不太安全,可以用druid对数据库密码进行加密解密。 Maven依赖: <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.2.8</version 阅读全文

posted @ 2022-01-25 15:56 乐之者v 阅读(531) 评论(0) 推荐(0) 编辑

2022年1月24日

SpringBoot2.X整合集成Dubbo

摘要: 环境安装 Dubbo使用zookeeper作为注册中心,首先要安装zookeeper。 Windows安装zookeeper如下: https://blog.csdn.net/qq_33316784/article/details/88563482 Linux安装zookeeper如下: https 阅读全文

posted @ 2022-01-24 23:33 乐之者v 阅读(457) 评论(0) 推荐(0) 编辑

IDEA启动项目报错:Caused by: java.io.FileNotFoundException: class path resource [.properties] cannot be opened because it does not exist

摘要: IDEA启动项目报错 Caused by: java.io.FileNotFoundException: class path resource [.properties] cannot be opened because it does not exist 解决方法: 1.检查文件的路径是否正确, 阅读全文

posted @ 2022-01-24 21:29 乐之者v 阅读(4250) 评论(0) 推荐(0) 编辑

2022年1月23日

SpringBoot无法访问接口,报错:This application has no explicit mapping for /error, so you are seeing this as a fallback.

摘要: 问题 SpringBoot启动后,无法访问接口,报错如下: Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. There w 阅读全文

posted @ 2022-01-23 21:46 乐之者v 阅读(10058) 评论(0) 推荐(0) 编辑

2022年1月18日

Dubbo添加过滤器(二)---日志打印接口耗时

摘要: Dubbo添加过滤器 详情见: https://www.cnblogs.com/expiator/p/14557091.html 本文主要是用Dubbo添加过滤器,统计接口耗时 日志打印接口耗时 import com.alibaba.dubbo.common.Constants; import co 阅读全文

posted @ 2022-01-18 16:24 乐之者v 阅读(488) 评论(0) 推荐(0) 编辑

2022年1月4日

ElastaticSearch -- es深度分页 searchAfter

摘要: searchAfter深度分页 es一次只能查1万条数据,如果超过1万,会报错如下: "reason": { "type": "query_phase_execution_exception", "reason": "Result window is too large, from + size m 阅读全文

posted @ 2022-01-04 01:03 乐之者v 阅读(1502) 评论(0) 推荐(0) 编辑

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 60 下一页

导航