File tree 5 files changed +44
-2
lines changed
src/main/java/person/springcloud
5 files changed +44
-2
lines changed Original file line number Diff line number Diff line change 1
1
package person .springcloud ;
2
2
3
3
4
+ import org .springframework .cloud .client .loadbalancer .LoadBalanced ;
4
5
import org .springframework .context .annotation .Bean ;
5
6
import org .springframework .context .annotation .Configuration ;
6
7
import org .springframework .web .client .RestTemplate ;
9
10
public class SpringConfiguration {
10
11
11
12
@ Bean
13
+ @ LoadBalanced
12
14
RestTemplate getRestTemplate (){
13
15
return new RestTemplate ();
14
16
}
Original file line number Diff line number Diff line change 3
3
import com .infras .ResultJSONObject ;
4
4
import org .springframework .beans .factory .annotation .Autowired ;
5
5
import org .springframework .web .bind .annotation .RequestMapping ;
6
+ import org .springframework .web .bind .annotation .ResponseBody ;
6
7
import org .springframework .web .bind .annotation .RestController ;
7
8
import org .springframework .web .client .RestTemplate ;
8
9
@@ -12,9 +13,11 @@ public class ClientController {
12
13
@ Autowired
13
14
private RestTemplate restTemplate ;
14
15
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" ;
16
18
17
19
@ RequestMapping ("/product/list" )
20
+ @ ResponseBody
18
21
public ResultJSONObject onlineProductList (){
19
22
return restTemplate .getForObject (url , ResultJSONObject .class );
20
23
}
Original file line number Diff line number Diff line change 28
28
<module >eureka7002</module >
29
29
<module >common</module >
30
30
<module >productProvider8001</module >
31
+ <module >productProvider8002</module >
31
32
<module >orderProvider9001</module >
32
33
</modules >
33
34
<packaging >pom</packaging >
Original file line number Diff line number Diff line change 9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
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 >
13
49
14
50
15
51
</project >
You can’t perform that action at this time.
0 commit comments