成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

JavaSpringCloud客戶服務(wù)創(chuàng)建方法是什么-創(chuàng)新互聯(lián)

這篇文章主要講解了“Java Spring Cloud客戶服務(wù)創(chuàng)建方法是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Java Spring Cloud客戶服務(wù)創(chuàng)建方法是什么”吧!

成都創(chuàng)新互聯(lián)專注于企業(yè)全網(wǎng)整合營銷推廣、網(wǎng)站重做改版、紅河哈尼網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5網(wǎng)站設(shè)計(jì)、商城網(wǎng)站開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為紅河哈尼等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

新建一個(gè)基本的 Spring Boot 工程,命名為 cloud-customer。

配置文件如下,僅是改了服務(wù)名和端口號(hào):

spring:
  application:
    name: cloud-customer
server:
  port: 8200
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8000/eureka/

創(chuàng)建一個(gè) Customer 的實(shí)體類

@Data
@AllArgsConstructor
@NoArgsConstructor
@Document(collection = "customers")
public class Customer {
    @Id
    private String id;
    private String name;
    private String mobile;
}

數(shù)據(jù)訪問層直接繼承 ReactiveCrudRepository 我們便有了基本的 CRUD 能力

public interface CustomerMongoReactiveRepository extends ReactiveCrudRepository<Customer, String> {
}

因?yàn)槲覀冎皇鞘纠?,不做?fù)雜的業(yè)務(wù)邏輯,所以省略了 Service 層,在 Controller 里邊直接將 CRUD 的操作代理給了 Repository。

@RestController
@RequestMapping("/customer")
public class CustomerController {
    @Autowired private CustomerMongoReactiveRepository repository;
    @Autowired private WebClient.Builder webClientBuilder;
    @GetMapping("")
    public Flux<Customer> list() {
        return repository.findAll();
    }
    @GetMapping("/{id}")
    public Mono<Customer> get(@PathVariable String id) {
        return repository.findById(id);
    }
    @PostMapping("")
    public Mono<Customer> create(@RequestBody Customer customer) {
        return repository.save(customer);
    }
    @PutMapping("/{id}")
    public Mono<Customer> update(@PathVariable("id") String id, @RequestBody Customer customer) {
        customer.setId(id);
        return repository.save(customer);
    }
    @DeleteMapping("/{id}")
    public Mono<Void> delete(@PathVariable String id) {
        return repository.deleteById(id);
    }
}

到這里,我們的服務(wù)注冊(cè)中心和兩個(gè)微服務(wù)就都好了。但是,這兩個(gè)微服務(wù)之間還是完全獨(dú)立的,沒有相互間的服務(wù)調(diào)用。現(xiàn)在我們來實(shí)現(xiàn)之前說的需求:客戶服務(wù)與帳戶服務(wù)可以相互通信,以獲取客戶的所有帳戶,并通過客戶服務(wù) API 方法返回。

首先創(chuàng)建一個(gè) Java Config,這里我們不再使用 RestTemplate 來調(diào)用服務(wù),而是 WebClient。這個(gè)配置看起來和注冊(cè) RestTemplate 時(shí)差不多,但是要注意這里注冊(cè)的 Bean 是 WebClient.Builder。

@Configuration
public class WebClientConfig {
    @Bean
    @LoadBalanced
    public WebClient.Builder loadBalancedWebClientBuilder() {
        return WebClient.builder();
    }
}

除了這種寫法,還有一種寫法是

public class MyClass {
    @Autowired
    private LoadBalancerExchangeFilterFunction lbFunction;
    public Mono<String> doOtherStuff() {
        return WebClient.builder().baseUrl("http://cloud-account/account")
            .filter(lbFunction)
            .build()
            .get()
            .uri("")
            .retrieve()
            .bodyToMono(String.class);
    }
}

下邊的是錯(cuò)誤的寫法,會(huì)拋出異常

@Bean
@LoadBalanced
public WebClient loadBalancedWebClient() {
    return WebClient.builder().baseUrl("http://cloud-account/account").build();
}

然后在 CustomerController 實(shí)現(xiàn)這個(gè)端點(diǎn):

@GetMapping("/{id}/account")
public Flux<Account> getAllAccounts(@PathVariable String id) {
    return webClientBuilder.baseUrl("http://cloud-account/account/").build()
        .get().uri("/customer/" + id)
        .retrieve()
        .bodyToFlux(Account.class);
}

這里需要在 cloud-customer 里創(chuàng)建一個(gè) DTO Account,因?yàn)楹?nbsp;cloud-account 里的完全一樣,就省略了。

感謝各位的閱讀,以上就是“Java Spring Cloud客戶服務(wù)創(chuàng)建方法是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)Java Spring Cloud客戶服務(wù)創(chuàng)建方法是什么這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

新聞標(biāo)題:JavaSpringCloud客戶服務(wù)創(chuàng)建方法是什么-創(chuàng)新互聯(lián)
文章起源:http://jinyejixie.com/article26/ccspcg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、響應(yīng)式網(wǎng)站、小程序開發(fā)靜態(tài)網(wǎng)站、動(dòng)態(tài)網(wǎng)站網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名
庆安县| 麻城市| 黑山县| 武平县| 平和县| 璧山县| 通渭县| 松滋市| 峨边| 土默特左旗| 克拉玛依市| 东兴市| 社会| 平定县| 宜川县| 宾阳县| 镇赉县| 五峰| 新干县| 乐清市| 武威市| 洛南县| 建阳市| 镇巴县| 沂源县| 巴青县| 龙泉市| 禹州市| 略阳县| 南皮县| 信丰县| 沈丘县| 田林县| 开鲁县| 新邵县| 博客| 叶城县| 汉阴县| 出国| 牡丹江市| 广饶县|