Mercy Ma

Results 63 issues of Mercy Ma

目前 dubbo 的配置项列表不全,提供一份完整消息的列表。

Enhancement

根据 Spring Boot 1.4 官方推荐,自定义 Spring Boot Starter 命名规则如下: https://docs.spring.io/spring-boot/docs/1.4.0.RELEASE/reference/htmlsingle/#boot-features-custom-starter-naming 因此,Dubbo on Spring Boot 的starter 名称应该为 `com.alibaba.boot:dubbo-spring-boot-starter`

Enhancement

### 问题描述 ```java public class Parsing { /** * Returns Integer corresponding to s, or null if s is null. * @throws NumberFormatException if s is nonnull and * doesn't...

question

### 问题描述 ```java public class MyMap { public static void main(String[] args) { Map map = new IdentityHashMap(); map.put(1, "Hello"); map.putIfAbsent(1, "World"); print(map.get(1)); print(map.size()); map.put(1024, "A"); map.putIfAbsent(1024, "B"); print(map.get(1024)); print(map.size());...

question

### 问题描述 ```java public class IntegerChange { public static void main(String[] args) throws Exception { Integer a = Integer.parseInt("10"); Integer b = Integer.valueOf(10); Integer c = 10; changeValue(a, 100); changeValue(b,...

question

### 问题描述 ```java public class Hamlet { public static void main(String[] args) { Random rnd = new Random(); boolean toBe = rnd.nextBoolean(); Number result = (toBe || !toBe) ? new...

question

要求: - 参考 [Redis Cluster 官方文档](https://redis.io/docs/management/scaling/),在本地搭建 N 个 Cluster 节点,能够正常工作

要求: - 参考 ReplicationConnectionProxy 实现,结合 Availability Zones Locator API 实现

要求: - Spring Cloud LoadBalancer 整合 Spring 6+ HTTP Interface(必须) - Spring 6.0+ HTTP Interface 实现通用同区域优先以及 Zone 多活架构(可选)

要求 1. 参考课件中的案例,在本地部署一次,达到理解 K8s 运维和操作方法。