Commit d571e440400067d7a935b1ba5cf6efce027c5d98

Authored by 648540858
1 parent 4d3f0a8d

去除过时注释

README.md
@@ -106,7 +106,6 @@ https://gitee.com/pan648540858/wvp-GB28181-pro.git @@ -106,7 +106,6 @@ https://gitee.com/pan648540858/wvp-GB28181-pro.git
106 - [X] 添加RTMP视频 106 - [X] 添加RTMP视频
107 - [X] 云端录像(需要部署单独服务配合使用) 107 - [X] 云端录像(需要部署单独服务配合使用)
108 - [X] 多流媒体节点,自动选择负载最低的节点使用。 108 - [X] 多流媒体节点,自动选择负载最低的节点使用。
109 -- [X] 支持使用mysql作为数据库,默认sqlite3,开箱即用。  
110 - [X] WEB端支持播放H264与H265,音频支持G.711A/G.711U/AAC,覆盖国标常用编码格式。 109 - [X] WEB端支持播放H264与H265,音频支持G.711A/G.711U/AAC,覆盖国标常用编码格式。
111 110
112 [//]: # (# docker快速体验) 111 [//]: # (# docker快速体验)
@@ -101,13 +101,6 @@ @@ -101,13 +101,6 @@
101 <version>8.0.22</version> 101 <version>8.0.22</version>
102 </dependency> 102 </dependency>
103 103
104 - <!-- 添加sqlite-jdbc数据库驱动 -->  
105 - <dependency>  
106 - <groupId>org.xerial</groupId>  
107 - <artifactId>sqlite-jdbc</artifactId>  
108 - <version>3.32.3.2</version>  
109 - </dependency>  
110 -  
111 <!--Mybatis分页插件 --> 104 <!--Mybatis分页插件 -->
112 <dependency> 105 <dependency>
113 <groupId>com.github.pagehelper</groupId> 106 <groupId>com.github.pagehelper</groupId>
src/main/resources/all-application.yml
@@ -28,7 +28,7 @@ spring: @@ -28,7 +28,7 @@ spring:
28 poolMaxIdle: 500 28 poolMaxIdle: 500
29 # [可选] 最大的等待时间(秒) 29 # [可选] 最大的等待时间(秒)
30 poolMaxWait: 5 30 poolMaxWait: 5
31 - # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置 31 + # [必选] jdbc数据库配置
32 datasource: 32 datasource:
33 type: com.alibaba.druid.pool.DruidDataSource 33 type: com.alibaba.druid.pool.DruidDataSource
34 driver-class-name: com.mysql.cj.jdbc.Driver 34 driver-class-name: com.mysql.cj.jdbc.Driver
src/main/resources/application-dev.yml
@@ -16,7 +16,6 @@ spring: @@ -16,7 +16,6 @@ spring:
16 password: face2020 16 password: face2020
17 # [可选] 超时时间 17 # [可选] 超时时间
18 timeout: 10000 18 timeout: 10000
19 - # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置  
20 # mysql数据源 19 # mysql数据源
21 datasource: 20 datasource:
22 type: com.alibaba.druid.pool.DruidDataSource 21 type: com.alibaba.druid.pool.DruidDataSource
src/main/resources/application-docker.yml
@@ -16,7 +16,7 @@ spring: @@ -16,7 +16,7 @@ spring:
16 password: ${REDIS_PWD:root} 16 password: ${REDIS_PWD:root}
17 # [可选] 超时时间 17 # [可选] 超时时间
18 timeout: 10000 18 timeout: 10000
19 - # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置 19 + # [必选] jdbc数据库配置
20 datasource: 20 datasource:
21 # 使用mysql 打开23-28行注释, 删除29-36行 21 # 使用mysql 打开23-28行注释, 删除29-36行
22 name: wvp 22 name: wvp