一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:
编程语言 时间:
2021-06-16 17:34:00
阅读次数:
0
title: springcloud系列之配置中心 date: 2021-06-03 12:00:30 tags: - [配置中心] - [config] categories: - [springcloud] permalink: zxh prefix: springcloud 背景 有多少次因为 ...
分类:
编程语言 时间:
2021-06-15 18:45:08
阅读次数:
0
springcloud-eureka-feign-mybatis-seata 整合步奏 1.下载seata-server,修改seate-server配置 2.client端(你自己的项目)拷贝seate-server中的file.conf, registry.conf 加入自己项目 3.数据源代理 ...
分类:
编程语言 时间:
2021-06-11 19:16:48
阅读次数:
0
在上一节,我们已经完成了项目的整体技术架构设计和具体的数据库设计,接下来,我们搭建整体的开发框架。 开发工具选用Idea。 开发工具只是为了提高效率,如果不习惯Idea的话,STS使用起来也是OK的。 1、创建多Module工程 1.1、创建父工程 创建一个父项目,项目命名为eshop-projec ...
分类:
编程语言 时间:
2021-06-10 18:31:36
阅读次数:
0
springCloud 1、创建一个简单的springcloud项目 先看基本项目结构 springcloud:父项目,总项目,对jar包版本等管控 springcloud-api:api主要是提供实体类的一个api模块 spring-cloud-provide-***-host:这个是一个服务提供 ...
分类:
编程语言 时间:
2021-06-08 23:36:55
阅读次数:
0
1.目录及问题描述 2.解决方案: a:父工程maven执行 clean install b:子工程maven执行 clean package(指的是公共模块) ...
分类:
编程语言 时间:
2021-06-07 20:26:05
阅读次数:
0
Spring Cloud Gateway是Spring官方基于Spring5.0,Spring Boot2.0和Project Reactor等技术开发的网关,Spring Cloud Gateway旨在为微服务架构提供简单,有效且统一的API路由管理方式。Spring Cloud Gateway作 ...
分类:
编程语言 时间:
2021-06-07 19:52:19
阅读次数:
0
1.写个配置类CorsConfig (如果不行,可以不写此类,和springcloud的版本有关) package net.youqu.micro.service.config; import org.springframework.context.annotation.Bean; import o ...
分类:
其他好文 时间:
2021-06-05 18:32:57
阅读次数:
0
前言 springcloud讲究的是模块化,直观上的做法就是使用maven来模块化每个包,例如原先实体类,接口,接口实现,控制器,都在同一个模块不同包中。而在cloud结构里边,则会分别提出来做成模块(为什么要搞这些华丽呼哨的?),提出来后,父工程的pom文件会修改成pom类型,并且作为父工程,引入 ...
分类:
其他好文 时间:
2021-06-02 19:27:18
阅读次数:
0
方法一:通过body.subscribe从Flux<DataBuffer>中获取请求body/返回结果的body private String resolveBodyFromRequest(ServerHttpRequest serverHttpRequest) { //获取请求体 Flux<Dat ...
分类:
编程语言 时间:
2021-06-02 19:06:50
阅读次数:
0