Ver Fonte

去除过时注释

648540858 há 3 anos atrás
pai
commit
d571e44040

+ 0 - 1
README.md

@@ -106,7 +106,6 @@ https://gitee.com/pan648540858/wvp-GB28181-pro.git
 - [X] 添加RTMP视频
 - [X] 云端录像(需要部署单独服务配合使用)
 - [X] 多流媒体节点,自动选择负载最低的节点使用。
-- [X] 支持使用mysql作为数据库,默认sqlite3,开箱即用。
 - [X] WEB端支持播放H264与H265,音频支持G.711A/G.711U/AAC,覆盖国标常用编码格式。
 
 [//]: # (# docker快速体验)

+ 0 - 7
pom.xml

@@ -101,13 +101,6 @@
 			<version>8.0.22</version>
 		</dependency>
 
-		<!-- 添加sqlite-jdbc数据库驱动 -->
-		<dependency>
-			<groupId>org.xerial</groupId>
-			<artifactId>sqlite-jdbc</artifactId>
-			<version>3.32.3.2</version>
-		</dependency>
-
 		<!--Mybatis分页插件 -->
 		<dependency>
 			<groupId>com.github.pagehelper</groupId>

+ 1 - 1
src/main/resources/all-application.yml

@@ -28,7 +28,7 @@ spring:
         poolMaxIdle: 500
         # [可选] 最大的等待时间(秒)
         poolMaxWait: 5
-    # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置
+    # [必选] jdbc数据库配置
     datasource:
         type: com.alibaba.druid.pool.DruidDataSource
         driver-class-name: com.mysql.cj.jdbc.Driver

+ 0 - 1
src/main/resources/application-dev.yml

@@ -16,7 +16,6 @@ spring:
         password: face2020
         # [可选] 超时时间
         timeout: 10000
-        # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置
         # mysql数据源
     datasource:
         type: com.alibaba.druid.pool.DruidDataSource

+ 1 - 1
src/main/resources/application-docker.yml

@@ -16,7 +16,7 @@ spring:
         password: ${REDIS_PWD:root}
         # [可选] 超时时间
         timeout: 10000
-    # [可选] jdbc数据库配置, 项目使用sqlite作为数据库,一般不需要配置
+    # [必选] jdbc数据库配置
     datasource:
         # 使用mysql 打开23-28行注释, 删除29-36行
          name: wvp