摘要: 修改某一个索引前缀的副本数量 PUT /索引名 或者索引前缀-*/_settings { "index": { "number_of_replicas": 1 } } 修改所有的索引副本 PUT /_all/_settings { "index": { "number_of_replicas": 1 阅读全文
posted @ 2024-10-16 19:41 yvioo 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 有时候开发启动服务看到端口被占用,一查发现是QQ占用了 这是因为QQ有一些服务会判断是否当前端口有没有使用,没有的话会使用这个端口 这种情况的话 只需要先把QQ退出来 ,然后先启动服务,然后在启动QQ就好了 阅读全文
posted @ 2024-10-10 10:24 yvioo 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 示例代码 public static void main(String[] args) { //标识最外层要跳出的位置 outer: for (int i = 0; i < 10; i++) { for (int j = 0; j < 10; j++) { System.out.println(j) 阅读全文
posted @ 2024-10-08 19:49 yvioo 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 获取所有表名信息 select t.owner table_dbname,t.table_name, t.num_rows table_rows, s.bytes table_size from all_tables t left join dba_segments s on s.segment_n 阅读全文
posted @ 2024-10-02 22:49 yvioo 阅读(51) 评论(0) 推荐(0) 编辑
摘要: private static final String NETMASK = "(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)"; private static final Pattern IP_PATTERN = Pattern.compile("^(?:" + N 阅读全文
posted @ 2024-09-06 20:40 yvioo 阅读(65) 评论(0) 推荐(0) 编辑
摘要: IDEA启动SpringBoot项目报错 Error running 'XXXApplication' Error running XXXXApplication. Command line is too long. Shorten the command line via JAR manifest 阅读全文
posted @ 2024-08-29 20:23 yvioo 阅读(28) 评论(0) 推荐(0) 编辑
摘要: failed to solve with frontend dockerfile.v0: failed to create LLB definition: unexpected status code [manifests 7]: 403 Forbidden 修改配置 改为false 阅读全文
posted @ 2024-08-28 10:52 yvioo 阅读(124) 评论(0) 推荐(0) 编辑
摘要: public static ThreadPoolExecutor executor=new ThreadPoolExecutor(5,5,5L, TimeUnit.SECONDS,new LinkedBlockingQueue<>(1000),new ThreadPoolExecutor.Calle 阅读全文
posted @ 2024-08-21 14:17 yvioo 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 随便打开项目一个路径 然后右上角会提示 点击信任即可 阅读全文
posted @ 2024-08-12 20:58 yvioo 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Caused by: java.lang.NoSuchFieldError: REFLECTION at com.sun.xml.bind.v2.model.impl.RuntimeModelBuilder.<init>(RuntimeModelBuilder.java:93) at com.sun 阅读全文
posted @ 2024-08-09 16:40 yvioo 阅读(32) 评论(0) 推荐(0) 编辑