Commit f6e432ad by giaogiao

修改介绍

parent fcac9aa7
......@@ -49,7 +49,9 @@ api-system api-app api-merchant
模块下每个控制器url路径必须要加上前缀```"/merchant/"```,这样为了方便权限控制
像这样:
```@RequestMapping("/merchant/register/")```
```
@RequestMapping("/merchant/register/")
```
注册业务逻辑要调用common模块中的service去操作
......@@ -60,7 +62,9 @@ api-system api-app api-merchant
模块下每个控制器url路径必须要加上前缀```"/app/"```,这样为了方便权限控制
像这样:
```@RequestMapping("/app/register/")```
```
@RequestMapping("/app/register/")
```
注册业务逻辑要调用common模块中的service去操作
......
......@@ -14,10 +14,9 @@ spring-boot-plus:
spring:
datasource:
# url: jdbc:mysql://localhost:3306/spring_boot_plus?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
url: jdbc:mysql://localhost:3306/Jumeirah?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
url: jdbc:mysql://47.99.47.225:3306/Jumeirah?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: 123
password: temple123456
# Redis配置
redis:
......
......@@ -6,8 +6,8 @@ server:
servlet:
context-path: /api
tomcat:
max-threads: 1000
min-spare-threads: 30
max-threads: 200
min-spare-threads: 10
uri-encoding: UTF-8
############################# 访问路径、端口tomcat end ###############################
......@@ -192,8 +192,6 @@ spring-boot-plus:
# - /actuator/**
- # 排除首页
- /,/index.html
- /app/world/*
- /system/hello/*
# 多行字符串权限配置
filter-chain-definitions: |
......@@ -201,7 +199,8 @@ spring-boot-plus:
/upload/**=anon
/verificationCode/**=anon
/enum=anon
# /getSysUserInfo=anon
# 配置/app/**路径下登陆的用户就能访问
/app/**=authc
######################## Spring Shiro end ##########################
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment