[mallmono] 商城系统建站过程(一)

本站为mallmono项目的建站过程,此站点为使用Springboot实现的单体应用,涉及jpa、redis、mongoDB等多种技术。
目前完成springboot单体版本的mall工程,后续会构建springcloud版本。

  1. 数据库构建-mysql【略】
  2. 初始化springboot项目【略】
  3. 添加基本依赖-由于此工程使用JPA,所以注释掉mybatis部分。

    
     
         
             org.springframework.boot
             spring-boot-starter-web
         
         
         
             org.springframework.boot
             spring-boot-starter-actuator
         
         
         
             org.springframework.boot
             spring-boot-starter-aop
         
         
         
             org.springframework.boot
             spring-boot-starter-logging
         
         
         
             com.alibaba
             druid
             1.1.9
         
         
         
             org.springframework.boot
             spring-boot-starter-test
             test
         
         
         
             org.springframework.boot
             spring-boot-starter-data-jpa
         
         
         
             mysql
             mysql-connector-java
             8.0.15
         
     

4.

你可能感兴趣的:(javaspringboot)