Skip to content

Commit 1b6c520

Browse files
committed
use ribbion as loadbalance
1 parent 711ea15 commit 1b6c520

File tree

5 files changed

+44
-2
lines changed

5 files changed

+44
-2
lines changed

EurekaClient/src/main/java/person/springcloud/SpringConfiguration.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package person.springcloud;
22

33

4+
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
45
import org.springframework.context.annotation.Bean;
56
import org.springframework.context.annotation.Configuration;
67
import org.springframework.web.client.RestTemplate;
@@ -9,6 +10,7 @@
910
public class SpringConfiguration {
1011

1112
@Bean
13+
@LoadBalanced
1214
RestTemplate getRestTemplate(){
1315
return new RestTemplate();
1416
}

EurekaClient/src/main/java/person/springcloud/controller/ClientController.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.infras.ResultJSONObject;
44
import org.springframework.beans.factory.annotation.Autowired;
55
import org.springframework.web.bind.annotation.RequestMapping;
6+
import org.springframework.web.bind.annotation.ResponseBody;
67
import org.springframework.web.bind.annotation.RestController;
78
import org.springframework.web.client.RestTemplate;
89

@@ -12,9 +13,11 @@ public class ClientController {
1213
@Autowired
1314
private RestTemplate restTemplate;
1415

15-
private String url = "http://localhost:8001/product/list";
16+
// private String url = "http://localhost:8001/product/list";
17+
private String url = "http://PRODUCT-SERVICE/product/list";
1618

1719
@RequestMapping("/product/list")
20+
@ResponseBody
1821
public ResultJSONObject onlineProductList(){
1922
return restTemplate.getForObject(url, ResultJSONObject.class);
2023
}
15 Bytes
Binary file not shown.

pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
<module>eureka7002</module>
2929
<module>common</module>
3030
<module>productProvider8001</module>
31+
<module>productProvider8002</module>
3132
<module>orderProvider9001</module>
3233
</modules>
3334
<packaging>pom</packaging>

productProvider8002/pom.xml

+37-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,43 @@
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

12-
<artifactId>produtProvider8002</artifactId>
12+
<artifactId>productProvider8002</artifactId>
13+
14+
<dependencies>
15+
<dependency>
16+
<groupId>org.springframework.boot</groupId>
17+
<artifactId>spring-boot-starter-web</artifactId>
18+
</dependency>
19+
<dependency>
20+
<groupId>org.springframework.cloud</groupId>
21+
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.alibaba</groupId>
25+
<artifactId>fastjson</artifactId>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.mybatis.spring.boot</groupId>
29+
<artifactId>mybatis-spring-boot-starter</artifactId>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.alibaba</groupId>
33+
<artifactId>druid-spring-boot-starter</artifactId>
34+
</dependency>
35+
<dependency>
36+
<groupId>mysql</groupId>
37+
<artifactId>mysql-connector-java</artifactId>
38+
</dependency>
39+
<dependency>
40+
<groupId>org.springframework.boot</groupId>
41+
<artifactId>spring-boot-starter-test</artifactId>
42+
</dependency>
43+
<dependency>
44+
<groupId>person.springcloud</groupId>
45+
<artifactId>common</artifactId>
46+
<version>${project.version}</version>
47+
</dependency>
48+
</dependencies>
1349

1450

1551
</project>

0 commit comments

Comments
 (0)