Skip to content

Commit dfee8fd

Browse files
committed
Added realtime chat using springboot websocket and vuejs
1 parent 6240f29 commit dfee8fd

File tree

32 files changed

+12933
-0
lines changed

32 files changed

+12933
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.2.3'
4+
id 'io.spring.dependency-management' version '1.1.4'
5+
}
6+
7+
group = 'com.stacktips.chat'
8+
version = '0.0.1-SNAPSHOT'
9+
10+
java {
11+
sourceCompatibility = '17'
12+
}
13+
14+
repositories {
15+
mavenCentral()
16+
}
17+
18+
dependencies {
19+
implementation 'org.springframework.boot:spring-boot-starter-web'
20+
implementation 'mysql:mysql-connector-java:8.0.33'
21+
implementation 'org.springframework.boot:spring-boot-starter-websocket'
22+
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
23+
implementation 'org.projectlombok:lombok'
24+
annotationProcessor('org.projectlombok:lombok')
25+
testAnnotationProcessor('org.projectlombok:lombok')
26+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
27+
}
28+
29+
tasks.named('test') {
30+
useJUnitPlatform()
31+
}
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Copyright 2012-2024 the original author or authors.
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# https://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
distributionBase=GRADLE_USER_HOME
17+
distributionPath=wrapper/dists
18+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
19+
networkTimeout=10000
20+
validateDistributionUrl=true
21+
zipStoreBase=GRADLE_USER_HOME
22+
zipStorePath=wrapper/dists

springboot-websocket-vuejs-chat/gradlew

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)