Spring Cloud (3): Eureka クライアント サービス プロバイダー

1. 次のようにサブプロジェクトを作成し、構成をインポートします。

<dependency>
 	<groupId>org.springframework.cloud</groupId>
 	<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
 	<version>2.0.2.RELEASE</version>
</dependency>

2. application.yml を作成し、次のように関連する設定を追加します。

server:
  port: 8010
spring:
  application:
    name: provider
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka/
  instance:
    prefer-ip-address:  true

プロパティの説明

*  spring.application.name : 当前服务注册在 Eureka Server 上的名称。

*  eureka.client.service-url.defaultZone : 注册中⼼的访问地址。  

*  eureka.instance.prefer-ip-address : 是否将当前服务的 IP 注册到 Eureka Server。

3. スタートアップ クラスを作成します。コードは次のとおりです。

package com.frr;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class EurekaClientApplication {
    
    
	public static void main(String[] args) throws Exception {
    
    
		SpringApplication.run(EurekaClientApplication.class, args);
	}

}

4. 登録センターを起動し、先ほど書き込んだサービス プロバイダーを起動します 登録センターのアドレスにアクセスすると、次のインターフェイスが表示され、正常に登録されたプロバイダー サービスがさらに増えています。

ここに画像の説明を挿入
#5. 実戦!生徒の追加、削除、変更をシミュレートする

  1. 次のように学生エンティティ クラスを作成します。
package com.frr.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data //生成Getter,Setter,equals,canEqual,hasCode,toString等方法
@AllArgsConstructor //添加一个构造函数,该构造函数含有所有已声明字段属性参数
@NoArgsConstructor //创建一个无参构造函数
public class Student {
    
    
	private long id;
	private String name;
	private int age;
}

ノート

*@Data    生成 Getter,Setter,equals,canEqual,hasCode,toString 等方法

*@AllArgsConstructor    添加一个构造函数,该构造函数含有所有已声明字段属性参数

*@NoArgsConstructor    创建一个无参构造函数
  1. インターフェイスを作成します。コードは次のとおりです。
package com.frr.repository;

import java.util.Collection;

import com.frr.entity.Student;

public interface StudentRepository {
    
    
	public Collection<Student> findAll();
	public Student findById(long id);
	public void saveOrUpdate(Student s);
	public void deleteById(long id);
}
  1. 実装クラスを作成し、静的コード ブロックを使用してデータの初期化を実現します。コードは次のとおりです。
package com.frr.repository.impl;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.springframework.stereotype.Repository;
import com.frr.entity.Student;
import com.frr.repository.StudentRepository;

@Repository
public class StudentRepositoryImpl implements StudentRepository{
    
    
	
	private static Map<Long,Student> studentMap;

	static {
    
    
		studentMap = new HashMap<>();
		studentMap.put(1L, new Student(1L, "张三", 11));
		studentMap.put(2L, new Student(1L, "李四", 11));
		studentMap.put(3L, new Student(1L, "王五", 11));
	}
	
	@Override
	public Collection<Student> findAll() {
    
    
		return studentMap.values();
	}

	@Override
	public Student findById(long id) {
    
    
		return studentMap.get(id);
	}

	@Override
	public void saveOrUpdate(Student s) {
    
    
		studentMap.put(s.getId(), s);
	}

	@Override
	public void deleteById(long id) {
    
    
		studentMap.remove(id);
	}

}
  1. 次のコードを使用してコントローラーを作成します。
package com.frr.controller;

import java.util.Collection;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import com.frr.entity.Student;
import com.frr.repository.StudentRepository;

@RestController //在Spring中@RestController的作用等同于@Controller + @ResponseBody。
@RequestMapping("/student")
public class StudentHandler {
    
    
	@Autowired
	private StudentRepository studentRepository;
	
	@GetMapping("/findAll")
	public Collection<Student> findAll(){
    
    
		return studentRepository.findAll();
	}
	
	@GetMapping("/findById/{id}")
	public Student findById(@PathVariable("id") long id) {
    
    
		return studentRepository.findById(id);
	}
	
	@PostMapping("/save")
	public void save(@RequestBody Student s) {
    
    
		studentRepository.saveOrUpdate(s);
	}
	
	@PutMapping("/Update")
	public void Update(@RequestBody Student s) {
    
    
		studentRepository.saveOrUpdate(s);
	}
	
	@DeleteMapping("/deleteById/{id}")
	public void deleteById(@PathVariable("id") long id) {
    
    
		studentRepository.deleteById(id);
	}
}
  1. 上記で作成したスタートアップ クラスを再起動します
  2. Postman ツールを使用して各メソッドをテストすると、データに一貫性があり成功を示します。
    ここに画像の説明を挿入

6. まとめ

非常に基本的なマイクロサービス アーキテクチャが構築されています。構築プロセスはシンプルかつ明確です。元の Spring Boot に基づいて、Spring Cloud の依存関係と eureka の関連構成を追加します。まとめると、Spring Cloud は Spring Boot をベースにして、それにさまざまなコンポーネントの機能を持たせることができます。では、サービスコンシューマーはどのようにしてサービスプロバイダーのインターフェースを呼び出すのでしょうか? 次の記事「Spring Cloud (4): RestTemplate の使用」を楽しみにしましょう。

開発エンジニアの一人も継続学習段階にあり、普段のちょっとした体験談を随時共有しています。私の書いた文章を読んでくれた方が、寄り道をせずに仕事や勉強の成功を祈っていただければ幸いです。
ブロガーの経験は限られていますが、欠点がある場合は、コミュニケーションを取り、一緒に改善することを歓迎します。同じ CSDN の皆さんと一緒に進歩していきたいと思っています。

著者 | スイートリトルスイートポテト
プロデュース | リトルスイートポテト

おすすめ

転載: blog.csdn.net/qq_36836370/article/details/130870446