本文創建方式採用intellij IDEA 創建項目 1.創建基於Eureka的註冊中心。 在打開項目中右鍵,選擇new 選擇moudle 然後下一步 輸入要創建的項目的信息 選擇web下麵的web,選擇cloud discovery下麵的 Eureka server 下一步,創建項目 然後同步po ...
本文創建方式採用intellij IDEA 創建項目
1.創建基於Eureka的註冊中心。
在打開項目中右鍵,選擇new 選擇moudle
然後下一步
輸入要創建的項目的信息
選擇web下麵的web,選擇cloud discovery下麵的 Eureka server 下一步,創建項目
然後同步pom.xml文件內容、
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.3.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.example</groupId> <artifactId>server</artifactId> <version>0.0.1-SNAPSHOT</version> <name>server</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> <spring-cloud.version>Greenwich.SR1</spring-cloud.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> </repository> </repositories> </project>
在啟動文件中選擇
@SpringBootApplication @EnableEurekaServer public class ServerApplication { public static void main(String[] args) { SpringApplication.run(ServerApplication.class, args); } }
配置文件
server: port: 8000 eureka: instance: hostname: localhost client: fetch-registry: false register-with-eureka: false serviceUrl: defaultZone: http://localhost:8000/eureka/ spring: application: name: spring-cloud-eureka
創建完,我們去運行下,運行正常後,我們去訪問localhost:8000, 到下麵的界面,這樣我們Eureka 註冊中心就創建成功,
下麵我們去創建server端,和client;
server端呢創建中與Eureka選擇不同的在於cloud discovery中,這裡需要選擇cloud Discovery
然後創建完,去同步對應的pom.xml文件
在啟動類編寫如下
@SpringBootApplication @EnableDiscoveryClient public class ServeroneApplication { public static void main(String[] args) { SpringApplication.run(ServeroneApplication.class, args); } }
配置文件
server: port: 8001 eureka: instance: hostname: localhost client: serviceUrl: defaultZone: http://localhost:8000/eureka/ spring: application: name: spring-serverserver
我們需要編寫一個提供服務的介面
@RestController public class HelloController { @RequestMapping("/hello") public String indesx(@RequestParam String name) { return "hello "+name+",this is first messge"; } }
這樣我們就可以實現我們的server端
然後我們去創建client端
client端多需要在server上創建多一個Feign
那麼我們在啟動類,如下
@SpringBootApplication @EnableDiscoveryClient @EnableFeignClients public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }
配置文件
server: port: 8002 eureka: instance: hostname: localhost client: serviceUrl: defaultZone: http://localhost:8000/eureka/ spring: application: name: spring-client
那麼我們去寫調用server的服務
@FeignClient(name= "spring-serverserver") public interface HelloRemote { @RequestMapping(value = "/hello") public String hello(@RequestParam(value = "name") String name); }
實現介面
@RestController public class ConsumerController { @Autowired HelloRemote lloRemote; @RequestMapping("/hello/{name}") public String index(@PathVariable("name") String name) { return lloRemote.hello(name); } }
這樣我們就實現了服務的註冊與調用。
那麼我們去啟動服務進行測試,服務註冊成功,我們去啟動服務調用端
服務調用端成功,
那麼我們去測試下,我們先去測試看單獨訪問服務是否正常
輸入http://localhost:8001/hello?name=liwanlei
顯示
那麼我們看下另外一個調用這個服務的服務
http://localhost:8002/hello/name
那麼我們看下返回
這樣我們調試成功。
戶端已經成功的通過feign調用了遠程服務,並且將結果返回到了瀏覽器。