在项目中连入easyExcel的依赖
初步写出esayExcel的demo 测试了统计数目订单的接口 编写实现两人实时聊天的demo项目 初步写出在一段时间内订单的数目统计的demo 完成了订单数目统计的接口 优化文件上传接口 优化管理端登录接口 优化了创建交易订单的接口 修复了在同域下Session接收不到的问题
This commit is contained in:
parent
ca389f65d5
commit
d484aa599b
|
@ -105,6 +105,16 @@
|
|||
<artifactId>lombok</artifactId>
|
||||
<version>1.18.30</version>
|
||||
</dependency>
|
||||
|
||||
<!-- redis -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-redis</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.session</groupId>
|
||||
<artifactId>spring-session-data-redis</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -29,6 +29,10 @@ server:
|
|||
port: 9999
|
||||
servlet:
|
||||
context-path: /api
|
||||
session:
|
||||
cookie.sameSite: None
|
||||
cookie.secure: true
|
||||
cookie.httpOnly: true
|
||||
mybatis-plus:
|
||||
configuration:
|
||||
map-underscore-to-camel-case: false
|
||||
|
|
Loading…
Reference in New Issue
Block a user