电商项目(十五)-前台项目的首页的商品分类查询和大广告位的显示
程序员文章站
2022-04-14 23:18:05
...
到现在我们已经把商城的后台功能全部实现,接下来我们进入前台功能的实现,首页的商品分类,大广告位,商品的搜索,商品的详情展示,购物车功能,生成订单,用户的登录和注册等功能的实现。
创建frontend_portal项目
在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>bz_parent</artifactId>
<groupId>com.bjsxt</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>backend_item</artifactId>
<dependencies>
<!-- pojo-->
<dependency>
<groupId>com.bjsxt</groupId>
<artifactId>common_pojo</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!--Spring Boot Web Starter-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--Spring Cloud Eureka Client Starter-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!--Spring Cloud OpenFeign Starter-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
<!-- utils -->
<dependency>
<groupId>com.bjsxt</groupId>
<artifactId>common_utils</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
添加配置文件application.yml
spring:
application:
name: backend_content
server:
port: 9030
eureka:
client:
serviceUrl:
defaultZone: http://eureka1:8761/eureka/
创建启动类
实现首页商品分类查询
在工具类的模块创建一个类CatNode,实现序列化的接口
在工具类的模块创建一个类CatResult,实现序列化的接口
下游服务:
在common_item模块中的ItemCategoryController中,新增方法:查询商品分类,返回值是:CatResult,参数:无
在业务层中实现商品分类查询,使用到递归查询。
上游服务:
在frontend_portal模块中的ItemCategoryController中,新增方法:查询商品分类,返回值是:Result,参数:无。
创建一个feign的客户端接口类。
在业务层中实现首页商品分类查询。
实现首页大广告位服务
下游服务:
在cmmon_content服务中中创建ContentController,新增方法:查询首页大广告,返回值:List
在配置文件中新增:
上游服务:
在frontend_portal模块中的ContentController中,新增方法:查询首页大广告位,返回值是:Result,参数:无。
在feign的客户端接口类新增接口方法。
业务层实现首页查询大广告位的方法,通过feign调用下游服务实现查询。