目录
一. 数据库搭建
二. 后端项目搭建
2.1 pom工程配置
2.2 设置静态资源访问
道冲,而用之或不盈。------《道德经》
上一篇:
瑞吉外卖项目整体介绍https://blog.csdn.net/qq_41857955/article/details/124310414
一. 数据库搭建本项目使用11张表,具体如下:
序号 | 表名 | 说明 |
1 | employee | 员工表 |
2 | category | 餐品与套餐分类表 |
3 | dish | 菜品表 |
4 | setmeal | 套餐表 |
5 | setmeal_dish | 套餐菜品关系表 |
6 | dish_flavor | 菜品口味关系表 |
7 | user | 用户表 |
8 | address_book | 地址簿表 |
9 | shoping_cart | 购物车表 |
10 | orders | 订单表 |
11 | order_detail | 订单明细表 |
可以通过命令行去执行SQL,具体 *** 作如下:
先创建一个数据库,然后在执行SQL文件:
create database reggie character set utf8mb4;
source xxx.sql;
二. 后端项目搭建
2.1 pom工程配置
建一个springboot的项目,导入依赖,写入基本配置:
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.4.5
org.example
reggie_take_out
1.0-SNAPSHOT
8
8
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-web
compile
com.baomidou
mybatis-plus-boot-starter
3.4.2
org.projectlombok
lombok
1.18.20
com.alibaba
fastjson
1.2.76
commons-lang
commons-lang
2.6
mysql
mysql-connector-java
runtime
com.alibaba
druid-spring-boot-starter
1.1.23
org.springframework.boot
spring-boot-maven-plugin
2.4.5
yml文件配置:
server:
port: 8080
spring:
application:
name: reggie_take_out
datasource:
druid:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/reggie?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: root
mybatis-plus:
configuration:
#在映射实体或者属性时,将数据库中表名和字段名中的下划线去掉,按照驼峰命名法映射
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
global-config:
db-config:
# 主键生成策略
id-type: ASSIGN_ID
2.2 设置静态资源访问
如果将静态资源直接放在资源目录下,肯定访问不了的,这时可以写一个静态资源配置类去访问:
package com.itheima.reggie.config;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
/**
* @author tongbing
* @date 2022/4/21
*/
@Slf4j
@Configuration
public class WebMvcConfig extends WebMvcConfigurationSupport {
/**
* TODO:或者在资源路径下创建static然后进行yml配置也可
* 静态资源映射
* @param registry
*/
@Override
protected void addResourceHandlers(ResourceHandlerRegistry registry) {
log.info("开始进行资源映射");
log.info("开始进行静态资源映射...");
registry.addResourceHandler("/backend/**").addResourceLocations("classpath:/backend/");
registry.addResourceHandler("/front/**").addResourceLocations("classpath:/front/");
}
}
访问:http://localhost:8080/backend/index.html即可加载静态资源如下:
如果发现在任何配置都正确的情况下还没有出现已上效果,可能出现的问题:
问题:
- 项目启动主类没有放在最外部(需要包含各个子包)
- 重新rebuild一下,编辑器会加载静态资源(重启亦可)
到这里,整个项目环境搭建完毕!!!
下一篇:
瑞吉外卖项目:后端登录功能实现https://blog.csdn.net/qq_41857955/article/details/124334559
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)