Skip to content

Commit adaecbe

Browse files
committed
Spring Boot JDBC MySQL POSTMAN
1 parent cba4cae commit adaecbe

File tree

21 files changed

+707
-102
lines changed

21 files changed

+707
-102
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
https://github.com/youtubechannel0804/RestApplication/blob/master/src/main/java/com/example/restapplication/respository/UserRepository.java
1+
https://github.com/youtubechannel0804/
2+
RestApplication/blob/master/src/main/java/com/example/restapplication/respository/UserRepository.java
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**
6+
!**/src/test/**
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
17+
### IntelliJ IDEA ###
18+
.idea
19+
*.iws
20+
*.iml
21+
*.ipr
22+
out/
23+
24+
### NetBeans ###
25+
/nbproject/private/
26+
/nbbuild/
27+
/dist/
28+
/nbdist/
29+
/.nb-gradle/
30+
31+
### VS Code ###
32+
.vscode/

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/SpringDatabase.iml

Lines changed: 0 additions & 9 deletions
This file was deleted.

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/codeStyles/Project.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/misc.xml

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

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Project1-SpringBoot-RestAPI-JDBC-MySQL/SpringDatabase/.idea/workspace.xml

Lines changed: 56 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
plugins {
2+
id 'org.springframework.boot' version '2.2.5.RELEASE'
3+
4+
id 'java'
5+
}
6+
7+
group = 'spring'
8+
version = '0.0.1'
9+
sourceCompatibility = '1.8'
10+
11+
apply plugin: 'io.spring.dependency-management'
12+
13+
repositories {
14+
mavenCentral()
15+
}
16+
17+
dependencies {
18+
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
19+
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
20+
implementation 'org.springframework.boot:spring-boot-starter-web'
21+
runtimeOnly 'mysql:mysql-connector-java'
22+
testImplementation('org.springframework.boot:spring-boot-starter-test')
23+
}
Binary file not shown.

0 commit comments

Comments
 (0)