zxf 2023-07-28 13:38:57 +08:00
parent 7c62670825
commit 8407668070
6 changed files with 12 additions and 52 deletions

View File

@ -37,51 +37,3 @@
- 使用文档https://www.yuque.com/u1024153/icipor
## 其它业务系统
- [[ 智慧农业认养系统 ]](https://gitee.com/tony2y/smart-breed)基于Java + SpringBoot + Mybatis Plus + Redis + Vue + antdv支持认养、商城、营销、会员、进销存、多租户等功能包含小程序系统管理后台。
- [[ 智慧景区管理系统 ]](https://gitee.com/tony2y/scenic-spot)基于Java + SpringBoot + Mybatis Plus + Redis + Vue + antdv支持景区管理、售票、地块管理、认养、商城、农资管理、积分兑换等功能包含小程序系统管理后台。
## 联系方式
付费版咨询、技术咨询、项目定制开发等其它支持可扫码添加微信进行沟通交流。
![微信](https://foruda.gitee.com/images/1673021725627728693/f3d6216b_2042292.jpeg)
## 工作流交流群
QQ群 [![加入QQ群](https://img.shields.io/badge/782924350-blue.svg)](https://jq.qq.com/?_wv=1027&k=2zE87c2G) 点击按钮入群。
## 请作者喝杯咖啡 ~ (*^▽^*)
<img src="https://foruda.gitee.com/images/1672215449995765124/596b46c3_2042292.png">
## 演示图
<table>
<tr>
<td><img src="https://foruda.gitee.com/images/1672821697044447970/6bc09d47_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672821770531098361/972cf362_2042292.png"/></td>
</tr>
<tr>
<td><img src="https://foruda.gitee.com/images/1672213722156548767/41fdbc64_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672213813377147650/5b549a6b_2042292.png"/></td>
</tr>
<tr>
<td><img src="https://foruda.gitee.com/images/1672213865795092087/3324aeaf_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672214004412335554/b3c6a74e_2042292.png"/></td>
</tr>
<tr>
<td><img src="https://foruda.gitee.com/images/1672214076886159011/ace43c9f_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672214124015264032/0bf13ae9_2042292.png"/></td>
</tr>
<tr>
<td><img src="https://foruda.gitee.com/images/1672214208441821384/b90c26be_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672214266396146807/3e6408a3_2042292.png"/></td>
</tr>
<tr>
<td><img src="https://foruda.gitee.com/images/1672214318671690501/80c425ed_2042292.png"/></td>
<td><img src="https://foruda.gitee.com/images/1672214425678628903/251c4200_2042292.png"/></td>
</tr>
</table>

View File

@ -66,6 +66,9 @@
<artifactId>zxf-flowable</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -26,4 +26,6 @@ public class zxfApplication
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}

View File

@ -6,9 +6,10 @@ spring:
druid:
# 主库数据源
master:
url: jdbc:mysql://10.0.24.12:3306/zxfuser?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
#url: jdbc:mysql://101.43.135.234:13306/zxfuser?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
url: jdbc:mysql://10.0.24.12:13306/zxfuser?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
username: root
password: root123456
password: uErE2caphG,g@zxf
# 从库数据源
slave:
# 从数据源开关/默认关闭

View File

@ -73,7 +73,7 @@ spring:
redis:
# 地址
# host: www.zxfltt.icu
host: 101.43.135.234
host: 127.0.0.1
# 端口默认为6379
port: 6379
# 数据库索引
@ -141,4 +141,4 @@ flowable:
async-executor-activate: false
wx:
AppId: wx9726c3834fcb3bd1
AppSecret: 28ac26ddbef7722863b512380513d66f
AppSecret: 28ac26ddbef7722863b512380513d66f

View File

@ -112,6 +112,8 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
.authorizeRequests()
// 对于登录login 注册register 验证码captchaImage 允许匿名访问
.antMatchers("/login", "/register", "/captchaImage").permitAll()
.antMatchers("/actuator/**").anonymous()
// 静态资源,可匿名访问
.antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
.antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()