子工程搭建与管理
新建一个cloud模块来作为公共模块,cloud模块中将管理用于微服务使用各个组件
euerka中的配置
package com.lingyang.euerka.config;import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;/*** @author **文* @Description:* @createDate 2024/8/12 10:39**/
@Configuration
public class RestTemplateConfig {@Beanpublic RestTemplate restTemplate() {return new RestTemplate();}}
新建两个spring-cloud的工程并能正常访问
这里在goods模块的pom中引入 euerka 的
<dependency><groupId>com.lingyang</groupId><artifactId>euerka</artifactId><version>1.0-SNAPSHOT</version></dependency>
在goods模块中调用服务
运行项目