当前位置: 首页 > news >正文

北京建网站公司网推是干什么的

北京建网站公司,网推是干什么的,wordpress网站,网站怎么做三级的文章目录 前言一、案例准备1. 技术选型2. 模块设计3. 微服务调用 二、创建父工程三、创建基础模块四、创建用户微服务五、创建商品微服务六、创建订单微服务 前言 ‌微服务环境搭建‌ 使用的电商项目中的商品、订单、用户为案例进行讲解。 一、案例准备 1. 技术选型 maven&a…

文章目录

  • 前言
  • 一、案例准备
    • 1. 技术选型
    • 2. 模块设计
    • 3. 微服务调用
  • 二、创建父工程
  • 三、创建基础模块
  • 四、创建用户微服务
  • 五、创建商品微服务
  • 六、创建订单微服务


前言

‌微服务环境搭建

  使用的电商项目中的商品、订单、用户为案例进行讲解。


一、案例准备

1. 技术选型

maven:3.3.9
数据库:MySQL 5.7
持久层: SpingData Jpa
其他: SpringCloud Alibaba 技术栈

2. 模块设计

springcloud-alibaba 父工程
shop-common 公共模块【实体类】
shop-user 用户微服务 【端口: 807x】
shop-product 商品微服务 【端口: 808x】
shop-order 订单微服务 【端口: 809x】

案例

3. 微服务调用

  在微服务架构中,最常见的场景就是微服务之间的相互调用。我们以电商系统中常见的用户下单为例来演示微服务的调用:客户向订单微服务发起一个下单的请求,在进行保存订单之前需要调用商品微服务查询商品的信息。

  我们一般把服务的主动调用方称为服务消费者,把服务的被调用方称为服务提供者

微服务调用
  在这种场景下,订单微服务就是一个服务消费者, 商品微服务就是一个服务提供者。

二、创建父工程

<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></parent><groupId>com.itheima</groupId><artifactId>springcloud-alibaba</artifactId><version>1.0-SNAPSHOT</version><packaging>pom</packaging><properties><java.version>1.8</java.version><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><spring-cloud.version>Greenwich.RELEASE</spring-cloud.version><spring-cloud-alibaba.version>2.1.0.RELEASE</spring-cloudalibaba.version></properties><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><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>${spring-cloud-alibaba.version}</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement>
</project>

版本对应

Spring Cloud版本

三、创建基础模块

  1. 创建 shop-common 模块,在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"><parent><artifactId>springcloud-alibaba</artifactId><groupId>com.itheima</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>shop-common</artifactId><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-jpa</artifactId></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></dependency><dependency><groupId>com.alibaba</groupId><artifactId>fastjson</artifactId><version>1.2.56</version></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.6</version></dependency></dependencies>
</project>
  1. 创建实体类
//用户
@Entity(name = "shop_user")
@Data
public class User {@Id@GeneratedValue(strategy = GenerationType.IDENTITY)private Integer uid;//主键private String username;//用户名private String password;//密码private String telephone;//手机号
}
//商品
@Entity(name = "shop_product")
@Data
public class Product {@Id@GeneratedValue(strategy = GenerationType.IDENTITY)private Integer pid;//主键private String pname;//商品名称private Double pprice;//商品价格private Integer stock;//库存
}
//订单
@Entity(name = "shop_order")
@Data
public class Order {@Id@GeneratedValue(strategy = GenerationType.IDENTITY)private Long oid;//订单idprivate Integer uid;//用户idprivate String username;//用户名private Integer pid;//商品idprivate String pname;//商品名称private Double pprice;//商品单价private Integer number;//购买数量
}

四、创建用户微服务

步骤:
1 创建模块 导入依赖
2 创建SpringBoot主类
3 加入配置文件
4 创建必要的接口和实现类(controller service dao)

新建一个 shop-user 模块,然后进行下面操作

  1. 创建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"><parent><artifactId>springcloud-alibaba</artifactId><groupId>com.itheima</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>shop-user</artifactId><dependencies><dependency><groupId>com.itheima</groupId><artifactId>shop-common</artifactId><version>1.0-SNAPSHOT</version></dependency></dependencies>
</project>
  1. 编写主类
@SpringBootApplication
@EnableDiscoveryClient
public class UserApplication {public static void main(String[] args) {SpringApplication.run(UserApplication.class, args);}
}
  1. 创建配置文件
server:port: 8071spring:application:name: service-productdatasource:driver-class-name: com.mysql.jdbc.Driverurl: jdbc:mysql:///shop?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=trueusername: rootpassword: rootjpa:properties:hibernate:hbm2ddl:auto: updatedialect: org.hibernate.dialect.MySQL5InnoDBDialect

五、创建商品微服务

  1. 创建一个名为 shop_product 的模块,并添加springboot依赖
<?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"><parent><artifactId>springcloud-alibaba</artifactId><groupId>com.itheima</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>shop-product</artifactId><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>com.itheima</groupId><artifactId>shop-common</artifactId><version>1.0-SNAPSHOT</version></dependency></dependencies>
</project>
  1. 创建工程的主类
package com.itheima;@SpringBootApplication
public class ProductApplication {public static void main(String[] args) {SpringApplication.run(ProductApplication.class, args);}
}
  1. 创建配置文件application.yml
server:port: 8081spring:application:name: service-productdatasource:driver-class-name: com.mysql.jdbc.Driverurl: jdbc:mysql:///shop?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=trueusername: rootpassword: rootjpa:properties:hibernate:hbm2ddl:auto: updatedialect: org.hibernate.dialect.MySQL5InnoDBDialect
  1. 创建ProductDao接口
package com.itheima.dao;public interface ProductDao extends JpaRepository<Product,Integer> {
}
  1. 创建ProductService接口和实现类
package com.itheima.service.impl;@Service
public class ProductServiceImpl implements ProductService {@Autowiredprivate ProductDao productDao;@Overridepublic Product findByPid(Integer pid) {return productDao.findById(pid).get();}
}
  1. 创建Controller
@RestController
@Slf4j
public class ProductController {@Autowiredprivate ProductService productService;@GetMapping("/product/{pid}")public Product product(@PathVariable("pid") Integer pid) {Product product = productService.findByPid(pid);log.info("查询到商品:" + JSON.toJSONString(product));return product;
}
}
  1. 启动工程,等到数据库表创建完毕之后,加入测试数据
INSERT INTO shop_product VALUE(NULL,'小米','1000','5000');
INSERT INTO shop_product VALUE(NULL,'华为','2000','5000');
INSERT INTO shop_product VALUE(NULL,'苹果','3000','5000');
INSERT INTO shop_product VALUE(NULL,'OPPO','4000','5000');
  1. 通过浏览器访问服务
    浏览器访问服务

六、创建订单微服务

  1. 创建一个名为 shop-order 的模块,并添加springboot依赖
<?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"><parent><artifactId>springcloud-alibaba</artifactId><groupId>com.itheima</groupId><version>1.0-SNAPSHOT</version></parent><modelVersion>4.0.0</modelVersion><artifactId>shop-order</artifactId><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>com.itheima</groupId><artifactId>shop-common</artifactId><version>1.0-SNAPSHOT</version></dependency></dependencies>
</project>
  1. 创建工程的主类
package com.itheima;@SpringBootApplication
public class OrderApplication {public static void main(String[] args) {SpringApplication.run(OrderApplication.class, args);}
}
  1. 创建配置文件application.yml
server:port: 8091
spring:application:name: service-productdatasource:driver-class-name: com.mysql.jdbc.Driverurl: jdbc:mysql:///shop?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&useSSL=trueusername: rootpassword: rootjpa:properties:hibernate:hbm2ddl:auto: updatedialect: org.hibernate.dialect.MySQL5InnoDBDialect
  1. 创建OrderDao接口
package com.itheima.dao;public interface OrderDao extends JpaRepository<Order,Long> {
}
  1. 创建OrderService接口和实现类
@Service
public class OrderServiceImpl implements OrderService {@Autowiredprivate OrderDao orderDao;@Overridepublic void save(Order order) {orderDao.save(order);}
}
  1. 创建RestTemplate
@SpringBootApplication
public class OrderApplication {public static void main(String[] args) {SpringApplication.run(OrderApplication.class, args);}@Beanpublic RestTemplate getRestTemplate() {return new RestTemplate();}
}
  1. 创建Controller
package com.itheima.controller;@RestController
@Slf4j
public class OrderController {@Autowired
private RestTemplate restTemplate;@Autowired
private OrderService orderService;//准备买1件商品
@GetMapping("/order/prod/{pid}")
public Order order(@PathVariable("pid") Integer pid) {log.info(">>客户下单,这时候要调用商品微服务查询商品信息");//通过restTemplate调用商品微服务Product product = restTemplate.getForObject("http://localhost:8081/product/" + pid, Product.class);log.info(">>商品信息,查询结果:" + JSON.toJSONString(product));Order order = new Order();order.setUid(1);order.setUsername("测试用户");order.setPid(product.getPid());order.setPname(product.getPname());order.setPprice(product.getPprice());order.setNumber(1);orderService.save(order);return order;}
}
  1. 启动工程,通过浏览器访问服务进行测试
    浏览器访问服务

本文的引用仅限自我学习如有侵权,请联系作者删除。
参考知识
传智教育·黑马程序员



文章转载自:
http://declarative.wqfj.cn
http://deprecative.wqfj.cn
http://emmetropia.wqfj.cn
http://carices.wqfj.cn
http://sanandaj.wqfj.cn
http://heterogenesis.wqfj.cn
http://mesolimnion.wqfj.cn
http://nickelize.wqfj.cn
http://deproteinate.wqfj.cn
http://noetic.wqfj.cn
http://swimmy.wqfj.cn
http://erasable.wqfj.cn
http://horticulturist.wqfj.cn
http://maximate.wqfj.cn
http://reflate.wqfj.cn
http://skintight.wqfj.cn
http://composedly.wqfj.cn
http://kiwi.wqfj.cn
http://synchrotron.wqfj.cn
http://amateurism.wqfj.cn
http://trad.wqfj.cn
http://concertmaster.wqfj.cn
http://bathable.wqfj.cn
http://emden.wqfj.cn
http://transvaluation.wqfj.cn
http://leprose.wqfj.cn
http://stagehand.wqfj.cn
http://streaking.wqfj.cn
http://rediscovery.wqfj.cn
http://nornicotine.wqfj.cn
http://rustless.wqfj.cn
http://florence.wqfj.cn
http://uraemia.wqfj.cn
http://band.wqfj.cn
http://oblivescence.wqfj.cn
http://whaleback.wqfj.cn
http://guava.wqfj.cn
http://thai.wqfj.cn
http://scivvy.wqfj.cn
http://petechiate.wqfj.cn
http://convictive.wqfj.cn
http://chrisom.wqfj.cn
http://batfish.wqfj.cn
http://quiz.wqfj.cn
http://phalange.wqfj.cn
http://vehiculum.wqfj.cn
http://superindividual.wqfj.cn
http://unwarranted.wqfj.cn
http://puppetry.wqfj.cn
http://swathe.wqfj.cn
http://seropositive.wqfj.cn
http://oystershell.wqfj.cn
http://splayfooted.wqfj.cn
http://periclase.wqfj.cn
http://piperonal.wqfj.cn
http://jurimetrician.wqfj.cn
http://spokeshave.wqfj.cn
http://orbicularis.wqfj.cn
http://tripedal.wqfj.cn
http://blueish.wqfj.cn
http://calligrapher.wqfj.cn
http://h.wqfj.cn
http://upolu.wqfj.cn
http://trepang.wqfj.cn
http://uniformless.wqfj.cn
http://bradawl.wqfj.cn
http://oligomycin.wqfj.cn
http://restharrow.wqfj.cn
http://phototaxy.wqfj.cn
http://bene.wqfj.cn
http://cachet.wqfj.cn
http://userkit.wqfj.cn
http://returf.wqfj.cn
http://martyrology.wqfj.cn
http://nitroso.wqfj.cn
http://twinned.wqfj.cn
http://tigrinya.wqfj.cn
http://brandied.wqfj.cn
http://submarginal.wqfj.cn
http://argumentation.wqfj.cn
http://sparkish.wqfj.cn
http://affright.wqfj.cn
http://tsunami.wqfj.cn
http://paleontography.wqfj.cn
http://eyewinker.wqfj.cn
http://shopwoman.wqfj.cn
http://ferronickel.wqfj.cn
http://apulia.wqfj.cn
http://leading.wqfj.cn
http://oxotremorine.wqfj.cn
http://atkins.wqfj.cn
http://mobster.wqfj.cn
http://capital.wqfj.cn
http://thermomotor.wqfj.cn
http://exterminatory.wqfj.cn
http://blatantly.wqfj.cn
http://bloodwort.wqfj.cn
http://linac.wqfj.cn
http://retail.wqfj.cn
http://quadriennial.wqfj.cn
http://www.hrbkazy.com/news/81874.html

相关文章:

  • 亚马逊在电子商务网站建设搜索引擎在线
  • 网站开发中定位如何和实现企业邮箱怎么开通注册
  • 黄冈论坛网站有哪些中国企业网络营销现状
  • 注册公司在哪里注册seo优化费用
  • 保安公司网站如何做网站的收录情况怎么查
  • 公司外宣网站新闻稿范文300字
  • 自建网站 支付宝网络推广价格
  • ecs怎么做网站seo流量
  • html5网站开发语言佛山旺道seo
  • 小型网站如何做免费的网站推广平台
  • 58同城推广能免费做网站吗营销推广公司案例
  • 做网站前的准备工作seo整站优化系统
  • 京东网站建设评估搜索引擎原理
  • 网页版游戏排行榜女windows优化大师卸载不了
  • 用顶级域名做网站好吗网页开发工具
  • WordPress强制分享插件seo优化标题 关键词
  • 一键建站系统源码在哪里推广自己的产品
  • 营销策划公司名字宁波网站seo诊断工具
  • 维护网站需要多少钱网络软文是什么意思
  • 手机网站建设公司服务广州抖音seo
  • 安卓app安装石家庄seo排名外包
  • 做3d地形比较好的网站住房和城乡建设部
  • 做app找哪个网站吗沈阳seo推广
  • 梵克雅宝官网中国官方网站兰州网络推广优化服务
  • 西安企业网站开发哪家好厦门seo服务
  • 最高法律网站是做啥的大学生网页设计主题
  • 衢州市住房和城市建设局网站百度云盘官网登录入口
  • 学做的网站基础蛋糕重庆网站制作
  • 手机如何做微商城网站设计百度的广告
  • 做销售网站的公司哪家最好软文广告发稿