上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 65 下一页
摘要: getDeclaredMethods自定义方法 protected void do_this_componentMoved(ComponentEvent e) { Point location = getLocation();// 获取窗体坐标 int x = location.x; int y = 阅读全文
posted @ 2023-01-15 20:37 cnetsa 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 类型的父类 阅读全文
posted @ 2023-01-15 20:36 cnetsa 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Modifier修饰符 阅读全文
posted @ 2023-01-15 20:35 cnetsa 阅读(11) 评论(0) 推荐(0) 编辑
摘要: /** * 获取程序内存信息 * * @param * @return */@org.junit.Testpublic void MemoryAction (){ Runtime runtime = Runtime.getRuntime(); // 获取Runtime对象实例 Map<String, 阅读全文
posted @ 2023-01-07 20:41 cnetsa 阅读(32) 评论(0) 推荐(0) 编辑
摘要: Feign是声明式的web service客户端,它让微服务的调用变得更简单了,类似Controller调用service。SpringCloud集成了Ribbon和Eureka,可在使用Feign时提供负载均衡的http客户端。 只需要创建一个接口,然后添加注解即可! feign,主要是社区、大家 阅读全文
posted @ 2022-12-29 23:17 cnetsa 阅读(23) 评论(0) 推荐(0) 编辑
摘要: Eureka包含两个组件:Eureka Server和Eureka Client。 Eureka Server提供服务注册服务,各个节点启动后,会在Eureka Server中进行注册,这样EurekaServer中的服务注册表中将会存储所有可用服务节点的信息,服务节点的信息可以在界面中直观的看到。 阅读全文
posted @ 2022-12-29 23:15 cnetsa 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1、// https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discoveryimplementation group: 'com.alibaba.cloud', name: 阅读全文
posted @ 2022-12-27 01:01 cnetsa 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 1、package com.yootk.nacos; //package import com.alibaba.nacos.api.PropertyKeyConst; //PropertyKeyConstimport com.alibaba.nacos.api.naming.NamingFactor 阅读全文
posted @ 2022-12-27 00:49 cnetsa 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1、// https://mvnrepository.com/artifact/com.alibaba.nacos/nacos-clientimplementation group: 'com.alibaba.nacos', name: 'nacos-client', version: '2.0.2 阅读全文
posted @ 2022-12-27 00:34 cnetsa 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 1、 public static final String DEPT_ADD_URL ="http://provider-dept-8001:8001/provider/dept/add"; public static final String DEPT_GET_URL ="http://provi 阅读全文
posted @ 2022-12-27 00:23 cnetsa 阅读(25) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 65 下一页