Skip to content

Commit 5ab0dde

Browse files
authored
feat:support dubbo3.2.x (#37)
1 parent 16f8499 commit 5ab0dde

File tree

166 files changed

+2139
-6821
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+2139
-6821
lines changed
Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
66
<artifactId>dubbo-examples</artifactId>
77
<groupId>com.tencent.polaris</groupId>
88
<version>${revision}</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
12-
13-
<artifactId>dubbo-example-interface</artifactId>
14-
12+
<artifactId>dubbo-api-example</artifactId>
1513

1614
</project>
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
1-
/*
2-
* Tencent is pleased to support the open source community by making Polaris available.
3-
*
4-
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
5-
*
6-
* Licensed under the BSD 3-Clause License (the "License");
7-
* you may not use this file except in compliance with the License.
8-
* You may obtain a copy of the License at
9-
*
10-
* https://opensource.org/licenses/BSD-3-Clause
11-
*
12-
* Unless required by applicable law or agreed to in writing, software distributed
13-
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
14-
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
15-
* specific language governing permissions and limitations under the License.
16-
*/
17-
18-
package org.apache.dubbo.demo;
19-
20-
public interface RatelimitDemoService extends DemoService {
21-
22-
}
1+
/*
2+
* Tencent is pleased to support the open source community by making Polaris available.
3+
*
4+
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
5+
*
6+
* Licensed under the BSD 3-Clause License (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* https://opensource.org/licenses/BSD-3-Clause
11+
*
12+
* Unless required by applicable law or agreed to in writing, software distributed
13+
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
14+
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
15+
* specific language governing permissions and limitations under the License.
16+
*/
17+
18+
package com.tencent.polaris.dubbo.example.api;
19+
20+
public interface GreetingService {
21+
22+
String sayHello(String name);
23+
24+
String sayHi(String name);
25+
26+
}

dubbo/dubbo-examples/dubbo-circuitbreak-example/dubbo-circuitbreak-consumer/pom.xml

Lines changed: 0 additions & 100 deletions
This file was deleted.

dubbo/dubbo-examples/dubbo-circuitbreak-example/dubbo-circuitbreak-consumer/src/main/java/com/tencent/polaris/dubbo/circuitbreak/consumer/Application.java

Lines changed: 0 additions & 68 deletions
This file was deleted.

dubbo/dubbo-examples/dubbo-circuitbreak-example/dubbo-circuitbreak-consumer/src/main/resources/log4j.properties

Lines changed: 0 additions & 7 deletions
This file was deleted.

dubbo/dubbo-examples/dubbo-circuitbreak-example/dubbo-circuitbreak-provider/pom.xml

Lines changed: 0 additions & 94 deletions
This file was deleted.

0 commit comments

Comments
 (0)