既然是一个全品类的电商购物平台,那么核心自然就是商品。因此我们要搭建的第一个服务,就是商品微服务。其中会包含对于商品相关的一系列内容的管理,包括:

- 商品分类管理
- 品牌管理
- 商品规格参数管理
- 商品管理
- 库存管理

1.微服务的结构

因为与商品的品类相关,我们的工程命名为​​yigou-item​​.

需要注意的是,我们的​​yigou-item​​是一个微服务,那么将来肯定会有其它系统需要来调用服务中提供的接口,因此肯定也会使用到接口中关联的实体类。

因此这里我们需要使用聚合工程,将要提供的接口及相关实体类放到独立子工程中,以后别人引用的时候,只需要知道坐标即可。

我们会在​​yigou-item​​中创建两个子工程:

yigou-item-interface:主要是对外暴露的接口及相关实体类
yigou-item-service:所有业务逻辑及内部使用接口

调用关系如图所示:
电商项目专题(四)-商品微服务_maven

2.创建父工程yigou-item

依然是使用maven构建:
电商项目专题(四)-商品微服务_spring_02
保存位置:
电商项目专题(四)-商品微服务_xml_03
不需要任何依赖,我们可以把项目打包方式设置为pom

<?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>yigou</artifactId>
<groupId>com.yigou.parent</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>yigou-item</artifactId>
<!-- 打包方式为pom -->
<packaging>pom</packaging>


</project>

3.创建yigou-item-interface

在yigou-item工程上点击右键,选择new > module:
电商项目专题(四)-商品微服务_xml_04
电商项目专题(四)-商品微服务_maven_05
注意:接下来填写的目录结构需要自己手动完成,保存到​​yigou-item​​​下的​​yigou-item-interface​​​目录中:
电商项目专题(四)-商品微服务_maven_06
点击Finish完成。
此时的项目结构:
电商项目专题(四)-商品微服务_maven_07

4.创建yigou-item-service

与​​yigou-item-interface​​​类似,我们选择在​​yigou-item​​​上右键,新建module,然后填写项目信息:
电商项目专题(四)-商品微服务_maven_08
填写存储位置,是在​​​/yigou-item/yigou-item-service​​​目录
电商项目专题(四)-商品微服务_xml_09
点击Finish完成。

4.1.整个微服务结构

如图所示:
电商项目专题(四)-商品微服务_maven_10
我们打开​​​yigou-item​​​的pom查看,会发现​​yigou-item-interface​​​和​​yigou-item-service​​都已经称为module了:

<?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>yigou</artifactId>
<groupId>com.yigou.parent</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>yigou-item</artifactId>
<!-- 打包方式为pom -->
<packaging>pom</packaging>
<modules>
<module>yigou-item-interface</module>
<module>yigou-item-service</module>
</modules>


</project>

5.添加依赖

接下来我们给​​yigou-item-service​​​中添加依赖:
思考一下我们需要什么?

- Eureka客户端
- web启动器
- mybatis启动器
- 通用mapper启动器
- 分页助手启动器
- 连接池,我们用默认的Hykira
- mysql驱动
- 千万不能忘了,我们自己也需要yigou-item-interface中的实体类

这些依赖,我们在顶级父工程:yigou中已经添加好了。所以直接引入即可:

<?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>yigou-item</artifactId>
<groupId>com.yigou.parent</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>yigou-item-service</artifactId>

<dependencies>
<!--Eureka客户端-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!--web启动器-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- mybatis启动器 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis.starter.version}</version>
</dependency>
<!-- 通用Mapper启动器 -->
<dependency>
<groupId>tk.mybatis</groupId>
<artifactId>mapper-spring-boot-starter</artifactId>
<version>${mapper.starter.version}</version>
</dependency>
<!-- 分页助手启动器 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pageHelper.starter.version}</version>
</dependency>
<!-- mysql驱动 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>

<dependency>
<groupId>com.yigou.parent</groupId>
<artifactId>yigou-item-interface</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>


</project>

​yigou-item-interface​​中需要什么我们暂时不清楚,所以先不管。

6.编写启动和配置

在整个​​yigou-item工程​​​中,只有​​yigou-item-service​​​是需要启动的。因此在其中编写启动类即可:
电商项目专题(四)-商品微服务_maven_11

/**
* @author bruceliu
* @create 2019-09-01 11:35
* @description
*/
@SpringBootApplication
@EnableDiscoveryClient
public class YigouItemService {
public static void main(String[] args) {
SpringApplication.run(YigouItemService.class, args);
}
}

然后是全局属性文件:

server:
port: 8081
spring:
application:
name: item-service
datasource:
url: jdbc:mysql://localhost:3306/yigou
username: root
password: 123456
hikari:
maximum-pool-size: 30
minimum-idle: 10
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:10086/eureka
instance:
lease-renewal-interval-in-seconds: 5 # 每隔5秒发送一次心跳
lease-expiration-duration-in-seconds: 10 # 10秒不发送就过期
prefer-ip-address: true
ip-address: 127.0.0.1
instance-id: ${spring.application.name}:${server.port}

7.添加商品微服务的路由规则

既然商品微服务已经创建,接下来肯定要添加路由规则到Zuul中,我们不使用默认的路由规则。

zuul:
prefix: /api # 添加路由前缀
retryable: true
routes:
item-service: /item/** # 将商品微服务映射到/item/**

8.启动测试

我们分别启动:​​yigou-registry​​​,​​yigou-api-gateway​​​,​​yigou-item-service​​​电商项目专题(四)-商品微服务_spring_12
查看Eureka面板:
电商项目专题(四)-商品微服务_xml_13

9.通用工具模块

有些工具或通用的约定内容,我们希望各个服务共享,因此需要创建一个工具模块:​​ly-common​使用maven来构建module:
电商项目专题(四)-商品微服务_xml_14
位置信息:
电商项目专题(四)-商品微服务_spring_15
目前结构
电商项目专题(四)-商品微服务_xml_16
目前还不需要编码。