大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统
作者:mmseoamin日期:2023-12-25

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统

迷你仿天猫商城是一个基于SpringBoot+SSM+MyBatis框架的综合性B2C电商平台,需求设计主要参考天猫商城的购物流程:用户从注册开始,到完成登录,浏览商品,加入购物车,进行下单,确认收货,评价等一系列操作。 作为模拟天猫商城系统的核心组成部分之一,采用SSM框架的天猫数据管理后台包含商品管理,订单管理,类别管理,用户管理和交易额统计等模块,实现了对商城的一站式管理和维护。

本项目所需要创建的sql表。

1). address 地址表

2). admin 管理员表

3). category 类别表

4). product 产品表

5). productimage 产品图片表

6). productorder 产品订单表

7). productorderitem 产品订单详细表

8). property 类别属性表

9). propertyvalue 产品属性管理表

10). review 评论表

11). user 用户表

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第1张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第2张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第3张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第4张

Spring Boot框架构建的Java应用程序的主要类

package com.xq.tmall;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@SpringBootApplication
@EnableTransactionManagement
public class TmallApplication {
    public static void main(String[] args) {
        SpringApplication.run(TmallApplication.class, args);
    }
}

使用Spring Boot框架构建的Java应用程序的主要类。

1.@Configuration: 注解表示这是一个配置类,它用于定义配置信息,可以替代XML配置文件。在这个类中,主要用于配置文件上传的大小限制。

2.@SpringBootApplication: 注解包含了@Configuration、@EnableAutoConfiguration 和 @ComponentScan。它表明这是一个Spring Boot应用,并启用了自动配置。@ComponentScan 默认扫描当前包及其子包的组件,这对于自动发现Spring管理的组件非常有用。

3.@MapperScan(“com.cy.store.mapper”): 用于指定MyBatis的Mapper接口所在的包。MyBatis是一个持久层框架,通过Mapper接口定义数据库的操作。

4.public class StoreApplication: 这是主应用程序类,包含了main方法,是整个应用程序的入口点。通过调用SpringApplication.run方法启动Spring Boot应用。

5.@Bean: 注解表示这是一个Spring Bean,并交给Spring容器管理。在这里,getMultipartConfigElement 方法用于配置MultipartConfigElement,即文件上传配置。

6.MultipartConfigFactory: 这是Spring Boot提供的用于配置文件上传的工厂类。通过它,我们可以设置文件上传的一些属性,如最大文件大小等。

7.DataSize 和 DataUnit: 这两个类是Spring框架中用于表示数据大小的工具类。DataSize.of 方法用于创建一个DataSize对象,表示文件大小。在这里,设置最大文件大小为10兆字节。

8.factory.setMaxFileSize(DataSize.of(10, DataUnit.MEGABYTES)): 设置文件上传的最大大小为10兆字节。

9.factory.setMaxRequestSize(DataSize.of(10, DataUnit.MEGABYTES)): 设置请求的最大大小为10兆字节,这包括文件和表单数据的大小。

10.return factory.createMultipartConfig(): 最终通过createMultipartConfig()方法创建并返回MultipartConfigElement对象,该对象包含了文件上传的配置信息。

这段代码配置了Spring Boot应用程序的一些基本设置,特别是文件上传的大小限制。这对于确保系统的安全性和稳定性是非常重要的。

application-dev.yml配置:

#Spring Boot Config
#端口
server:
  port: 8082
  servlet:
    context-path: /tmall
spring:
  datasource:
    #druid基本属性
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://192.168.1.9:3306/tmalldemodb?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=UTF-8&useSSL=false
    username: root
    password: root
    #druid相关配置
    druid:
      # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
      filters: stat,wall
      #配置初始化大小/最小/最大
      initial-size: 5
      min-idle: 1
      max-active: 50
      #获取连接等待超时时间
      max-wait: 60000
      #间隔多久进行一次检测,检测需要关闭的空闲连接
      time-between-eviction-runs-millis: 60000
      #一个连接在池中最小生存的时间
      min-evictable-idle-time-millis: 300000
      validation-query: SELECT 1 FROM DUAL
      test-while-idle: true
      test-on-borrow: false
      test-on-return: false
      #打开PSCache,并指定每个连接上PSCache的大小。oracle设为true,mysql设为false。分库分表较多推荐设置为false
      pool-prepared-statements: false
      max-pool-prepared-statement-per-connection-size: 20
      # 通过connectProperties属性来打开mergeSql功能;慢SQL记录
    hikari:
      connection-timeout: 5000
      max-lifetime: 60000
  mail:
    host: smtp.163.com
    username: su50832022@163.com
    password: suming5083.
  freemarker:
    suffix: .html
    request-context-attribute: request
    charset: UTF-8
  aop:
    proxy-target-class: true
  devtools:
    restart:
      enabled: true
  jackson:
    date-format: yyyy-MM-dd HH:mm:ss
    time-zone: GMT+8
  servlet:
    multipart:
      max-file-size: 20MB
#MyBatis
mybatis-plus:
  mapper-locations: classpath:/mapper/*Mapper.xml
  #实体扫描,多个package用逗号或者分号分隔
  typeAliasesPackage: com.xq.tmall.entity;
  global-config:
    #主键类型  0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID";
    id-type: 0
    #字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断"
    field-strategy: 2
    #驼峰下划线转换
    db-column-underline: false
    #刷新mapper 调试神器
    refresh-mapper: true
    #数据库大写下划线转换
    #capital-mode: true
    #序列接口实现类配置
    #key-generator: com.baomidou.springboot.xxx
    #逻辑删除配置
    #logic-delete-value: 0
    #logic-not-delete-value: 1
    #自定义填充策略接口实现
    meta-object-handler: com.xq.tmall.config.mybatis.MyMetaObjectHandler
    #自定义SQL注入器
    #sql-injector: com.baomidou.springboot.xxx
  configuration:
    map-underscore-to-camel-case: false # 开启驼峰命名转换法
    cache-enabled: true
    #Mybatis返回null值不显示
    call-setters-on-nulls: true
#logging
logging:
  level:
    com.xq.tmall: DEBUG
  #file: ./logs/xqdjzwwexin-log.log
#短信平台配置
sms:
  open: true
  sms-type: huyi
  sign-name: aa
  api-id: C68828166
  api-key: e7814b5b690142a8b36bc17bfc4ec8a4
  url: http://106.ihuyi.cn/webservice/sms.php?method=Submit

上面代码主要用于配置应用的各种参数和组件。

这段代码是Spring Boot项目的配置文件,主要用于配置应用的各种参数和组件。让我来帮你解析一下:

端口配置:

server:
  port: 8082
  servlet:
    context-path: /tmall

指定应用运行的端口为8082,并设置Servlet的上下文路径为/tmall。

数据源配置:

spring:
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://192.168.1.9:3306/tmalldemodb?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=UTF-8&useSSL=false
    username: root
    password: root
    druid:
      # Druid连接池的相关配置

配置了数据库连接池的基本信息,使用了阿里巴巴的Druid数据源。指定了MySQL数据库的连接信息,包括URL、用户名、密码等。

邮件配置:

mail:
  host: smtp.163.com
  username: su50832022@163.com
  password: suming5083.
配置了邮件发送的相关信息,包括SMTP服务器地址、发件人邮箱、发件人密码。

模板引擎(FreeMarker)配置:

freemarker:
  suffix: .html
  request-context-attribute: request
  charset: UTF-8

配置了FreeMarker模板引擎的一些属性,包括模板文件的后缀、请求上下文属性名、字符集等。

AOP(面向切面编程)配置:

aop:
  proxy-target-class: true

配置了AOP代理的一些属性,这里设置使用CGLIB代理。

开发者工具配置:

devtools:
  restart:
    enabled: true

配置了Spring Boot的开发者工具,允许自动重启应用。

Jackson配置:

jackson:
  date-format: yyyy-MM-dd HH:mm:ss
  time-zone: GMT+8

配置了Jackson JSON处理库的一些属性,包括日期格式和时区。

文件上传配置:

servlet:
  multipart:
    max-file-size: 20MB

配置了Servlet的文件上传参数,限制了文件的最大大小为20MB。

MyBatis Plus配置:

mybatis-plus:
  mapper-locations: classpath:/mapper/*Mapper.xml
  typeAliasesPackage: com.xq.tmall.entity;
  global-config:
    # MyBatis Plus的全局配置

配置了MyBatis Plus的一些参数,包括Mapper文件的位置、实体类扫描的包路径等。

上面配置文件定义了应用的各种行为和组件的配置,确保应用在不同环境中能够正确运行。

用一个 Spring Boot 测试类,用 @SpringBootTest 注解来加载整个应用程序上下文,并包含一个空的测试方法 contextLoads(),用于确保应用程序的基本上下文可以正常加载

1.包声明:

  package com.example.tmall;

这个类位于 com.example.tmall 包中。

2.导入的类:

   import org.junit.jupiter.api.Test;
   import org.springframework.boot.test.context.SpringBootTest;

3.org.junit.jupiter.api.Test: 这是 JUnit 5 中用于标识测试方法的注解。

4.org.springframework.boot.test.context.SpringBootTest: 这是 Spring Boot 提供的注解,用于指示该类是一个测试类,并会初始化 Spring 应用程序上下文。

5.类声明:

   @SpringBootTest
   class TmallApplicationTests {

6.@SpringBootTest: 这是一个 Spring Boot 测试注解,它告诉测试框架要加载整个 Spring 应用程序上下文来执行测试。

7.测试方法:

   @Test
   void contextLoads() {
   }

这是一个测试方法 contextLoads(),由 @Test 注解标记。通常这样的空方法用来测试应用程序的上下文加载是否正常。如果应用程序上下文可以成功加载,这个测试方法将成功运行。

总体来说,这个测试类是一个基本的 Spring Boot 测试类,它用 @SpringBootTest 注解来加载整个应用程序上下文,并包含一个空的测试方法 contextLoads(),用于确保应用程序的基本上下文可以正常加载。

Springfox Swagger2 生成 API 文档的 Java 配置类:

package com.xq.tmall.config.swagger2;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@Configuration
@EnableSwagger2
@Profile({"dev","test","prod"})
public class Swagger2 {
	@Bean
	public Docket createRestApi() {
		return new Docket(DocumentationType.SWAGGER_2)
				.apiInfo(apiInfo())
				.select()
				.apis(RequestHandlerSelectors.basePackage("com.xq.tmall.controller"))
				.paths(PathSelectors.any())
				.build();
	}
	
	private ApiInfo apiInfo() {
		return new ApiInfoBuilder()
				.title("接口API文档")
				.description("简单优雅的RESTful API")
				.version("1.0")
				.build();
	}
}

作用是启用 Swagger2,并配置生成 API 文档的基本信息。它会扫描指定包下的 controller 类,生成相应的 API 文档。在开发、测试和生产环境下都可用,通过 @Profile 注解进行环境切换。

这里需要注意的地方是UserMapper.xml里面要记得设置 #{user.user_id},。否则无法进行注册。

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第5张

同时application-dev.yml里面的账号密码都要修改成自己的用户名和密码。没有网易邮箱的要提前进行注册,并开启服务。

具体如下:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第6张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第7张

启动项目:

浏览器网址输入:

http://localhost:8082/tmall/register

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第8张

免费注册页面:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第9张

注册成功!

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第10张

成功登录:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第11张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第12张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第13张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第14张

查看sql数据库用户添加情况:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第15张

修改个人信息上传头像:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第16张

点击商品详情页,显示商品详细信息。鼠标放到图片上面,显示衣服细节

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第17张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第18张

点击立即购买,可以输入

收货地址

所在地区

详细地址

邮政编码

收货人姓名

手机号码信息,

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第19张

提交订单

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第20张

其它效果图

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第21张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第22张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第23张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第24张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第25张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第26张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第27张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第28张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第29张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第30张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第31张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第32张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第33张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第34张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第35张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第36张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第37张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第38张

进入后端管理员界面:

http://localhost:8082/tmall/admin/login

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第39张

个人信息更新

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第40张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第41张

不同时间范围的商品数据分析:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第42张

数据图表动态展示

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第43张

所有商品详细信息及分页展示:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第44张

管理员添加商品信息

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第45张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第46张

产品分类

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第47张

添加商品分类:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第48张

查询分类——女装:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第49张

产品分类详情,女装 /大衣为例大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第50张

用户管理:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第51张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第52张

根据订单的不同状态进行查询:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第53张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第54张

修改个人账户密码:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第55张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第56张

密码修改后自动退出,重新登录

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第57张

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第58张

控制台日志信息:

大数据SpringBoot|基于SpringBoot+SSM+MyBatis框架的迷你仿天猫商城购物系统,在这里插入图片描述,第59张

OK,到这里基于SpringBoot+MyBatis框架的仿天猫商城购物系统设计与实现就已经完成了!