| | |
| | | spring: |
| | | # [可选]上传文件大小限制 |
| | | servlet: |
| | | multipart: |
| | | max-file-size: 10MB |
| | | max-request-size: 100MB |
| | | # REDIS数据库配置 |
| | | redis: |
| | | # [必须修改] Redis服务器IP, REDIS安装在本机的,使用127.0.0.1 |
| | |
| | | datasource: |
| | | # 使用mysql 打开23-28行注释, 删除29-36行 |
| | | # name: wvp |
| | | # url: jdbc:mysql://127.0.0.1:3306/wvp?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true |
| | | # url: jdbc:mysql://127.0.0.1:3306/wvp?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true&allowMultiQueries=true |
| | | # username: |
| | | # password: |
| | | # type: com.alibaba.druid.pool.DruidDataSource |
| | |
| | | password: |
| | | type: com.alibaba.druid.pool.DruidDataSource |
| | | driver-class-name: org.sqlite.JDBC |
| | | journal_mode: WAL |
| | | synchronous: NORMAL |
| | | transaction_mode: IMMEDIATE |
| | | max-active: 1 |
| | | min-idle: 1 |
| | | |