2 Star 18 Fork 4

SocietyETO / videoClient

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.en.md 3.24 KB
一键复制 编辑 原始数据 按行查看 历史
QQ技术 提交于 2022-04-09 18:37 . 升级为java17和spring boot 3.0

videoClient

Description

webRTC音视频通话demo

Software Architecture

Software architecture description

Installation

  1. xxxx
  2. xxxx
  3. xxxx

Instructions

  1. xxxx
  2. xxxx
  3. xxxx

Contribution

  1. Fork the repository
  2. Create Feat_xxx branch
  3. Commit your code
  4. Create Pull Request

Gitee Feature

  1. You can use Readme_XXX.md to support different languages, such as Readme_en.md, Readme_zh.md
  2. Gitee blog blog.gitee.com
  3. Explore open source project https://gitee.com/explore
  4. The most valuable open source project GVP
  5. The manual of Gitee https://gitee.com/help
  6. The most popular members https://gitee.com/gitee-stars/

4.0.0 org.springframework.boot spring-boot-starter-parent 3.0.0-M2

<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>1.0.0</version>
<name>videoClient</name>
<description>video client project for Spring Boot</description>

<properties>
	<java.version>17</java.version>
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-web</artifactId>
	</dependency>

	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-websocket</artifactId>
	</dependency>

	<dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>fastjson</artifactId>
        <version>1.2.47</version>
    </dependency>
</dependencies>

<build>
	<plugins>
		<plugin>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-maven-plugin</artifactId>
		</plugin>
	</plugins>
</build>

 <repositories>
  <repository>
    <id>central</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    <layout>default</layout>
    <!-- 是否开启发布版构件下载 -->
    <releases>
        <enabled>true</enabled>
    </releases>
    <!-- 是否开启快照版构件下载 -->
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
	</repository>
   <repository>
     <id>spring-milestones</id>
     <name>Spring Milestones</name>
     <url>https://repo.spring.io/milestone</url>
     <snapshots>
       <enabled>false</enabled>
     </snapshots>
   </repository>
 </repositories>
 
 <pluginRepositories>
   <pluginRepository>
     <id>spring-milestones</id>
     <name>Spring Milestones</name>
     <url>https://repo.spring.io/milestone</url>
     <snapshots>
       <enabled>false</enabled>
     </snapshots>
   </pluginRepository>
 </pluginRepositories>
Java
1
https://gitee.com/society-eto/video-client.git
git@gitee.com:society-eto/video-client.git
society-eto
video-client
videoClient
master

搜索帮助