其他分享
首页 > 其他分享> > 无为商城_创建商品微服务

无为商城_创建商品微服务

作者:互联网

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

1.微服务的结构

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

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

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

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

调用关系如图所示:

 

 

 

2.leyou-item

依然是使用maven构建:

 

 

 保存的位置:

 

 

 因为是聚合工程,所以把项目打包方式设置为pom(检查,也许会自动生成)

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

3.leyou-item-interface

在leyou-item工程上点击右键,选择new --> module:

 

 

 依然是使用maven构建,注意父工程是leyou-item:

 

 

 注意:目录结构,保存到leyou-item下的leyou-item-interface目录中:

点击Finish完成。

此时的项目结构:

 

 

 

4.leyou-item-service

leyou-item-interface类似,我们选择在leyou-item上右键,新建module,然后填写项目信息:

 

 填写存储位置

 

 点击Finish完成。

5.整个微服务结构

如图所示:

 

 我们打开leyou-item的pom查看,会发现leyou-item-interface和leyou-item-service都已经成为module了:

 

 可以删除leyou-item工程的src目录

6.添加依赖

接下来我们给leyou-item-service中添加依赖:

思考一下我们需要什么?

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

    <dependencies>
        <!-- web启动器 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- eureka客户端 -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <!-- mybatis的启动器 -->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
        </dependency>
        <!-- 通用mapper启动器 -->
        <dependency>
            <groupId>tk.mybatis</groupId>
            <artifactId>mapper-spring-boot-starter</artifactId>
        </dependency>
        <!-- 分页助手启动器 -->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
        </dependency>
        <!-- jdbc启动器 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <!-- mysql驱动 -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <!--wuwei-item-interface实体类-->
        <dependency>
            <groupId>com.wuwei.item.interface</groupId>
            <artifactId>wuwei-item-interface</artifactId>
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
        <!-- springboot检测服务启动器 -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
    </dependencies>

leyou-item-interface中需要什么我们暂时不清楚,所以先不管。以后需要什么依赖,再引入。

 

7.编写启动和配置

在整个leyou-item工程中,只有leyou-item-service是需要启动的。因此在其中编写启动类即可:

/*@SpringBootApplication
//eureka客户端
@EnableDiscoveryClient*/
@SpringBootApplication
@EnableDiscoveryClient
public class WuweiItemServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(WuweiItemServiceApplication.class);
    }
}

然后是全局属性文件:

#修改端口号
server:
  port: 8081
#修改程序名称
spring:
  application:
    name: item-service
  #需要连接数据库配置jdbc
  datasource:
    url: jdbc:mysql:///wuwei
    username: root
    password: root
    hikari:
      max-lifetime: 28830000 # 一个连接的生命时长(毫秒),超时而且没被使用则被释放(retired),缺省:30分钟,建议设置比数据库超时时长少30秒,参考MySQL wait_timeout参数(show variables like '%timeout%';)
      maximum-pool-size: 9 # 连接池中允许的最大连接数。缺省值:10;推荐的公式:((core_count * 2) + effective_spindle_count)
#eureka服务端的路径
eureka:
  client:
    service-url:
      defaultZone: http://localhost:10086/eureka
  instance:
    lease-renewal-interval-in-seconds: 5 # 5秒钟发送一次心跳
    lease-expiration-duration-in-seconds: 10 # 10秒不发送就过期

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

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

修改leyou-gateway工程的application.yml配置文件:

zuul:
  prefix: /api # 路由路径前缀
  routes:
    item-service: /item/** # 商品微服务的映射路径

9.启动测试

我们分别启动:leyou-registry,leyou-gateway,leyou-item-service

 

 查看Eureka面板:

 

 

10.测试路由规则

为了测试路由规则是否畅通,我们是不是需要在item-service中编写一个controller接口呢?

其实不需要,SpringBoot提供了一个依赖:actuator

只要我们添加了actuator的依赖,它就会为我们生成一系列的访问接口:

添加依赖:(前面已经添加过了)

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

重启后访问Eureka控制台:

鼠标悬停在item-service上,会显示一个地址:

 

 这就是actuator提供的接口,我们点击访问:

 

 

因为我们没有添加信息,所以是一个空的json,但是可以肯定的是:我们能够访问到item-service了。

接下来我们通过路由访问试试,根据路由规则,我们需要访问的地址是:

http://127.0.0.1:10010/api/item/actuator/info

 

 

11.通用工具模块

有些工具或通用的约定内容,我们希望各个服务共享,因此需要创建一个工具模块:leyou-common

右键leyou工程,使用maven来构建module:

 

 位置信息:

 

 结构:

 

 目前还不需要编码。

12.项目环境搭建完成

 

标签:service,创建,boot,item,leyou,spring,无为,interface,商城
来源: https://www.cnblogs.com/Tunan-Ki/p/11845174.html