Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
1cc1766
:sparkles [WEEK14] AMQP ์Šคํ”„๋ง init
sengjun0624 Apr 9, 2025
5f70732
:sparkles: [WEEk14] MVC Projcet Init
sengjun0624 Apr 10, 2025
0d948d6
:sparkles: [WEEk14] Spring์œผ๋กœ AMQP ์‚ฌ์šฉ'
sengjun0624 Apr 10, 2025
a4c48a8
:sparkles: [WEEk14] MVC Commerce,Delivery Controller ์ถ”๊ฐ€
sengjun0624 Apr 10, 2025
b4d1b4e
:sparkles: [WEEk14] Project Init
sengjun0624 Apr 10, 2025
6918eba
:sparkles: [WEEk14] Project Init
sengjun0624 Apr 10, 2025
4efe9db
:sparkles: [WEEk14] WebFlux Projcet
sengjun0624 Apr 10, 2025
eb97258
:sparkles: [WEEk14] Projcet Init
sengjun0624 Apr 10, 2025
a415b64
:sparkles: [WEEk14] Add Vet Model
sengjun0624 Apr 10, 2025
4c2987e
:sparkles: [WEEk14] Add Vet Service
sengjun0624 Apr 10, 2025
a728dbd
:sparkles: [WEEk14] Add Config Service
sengjun0624 Apr 10, 2025
f74ffe0
:sparkles: [WEEk14] Vet <->Config ์—ฐ๊ฒฐ
sengjun0624 Apr 10, 2025
10e7217
:sparkles: feat: ID๋ณ„ ์ˆ˜์˜์ž ์กฐํšŒ ๊ธฐ๋Šฅ ์ถ”๊ฐ€
sengjun0624 Apr 11, 2025
faa4999
:sparkles: feat: r2dbc ์—ฐ๊ฒฐ ์ •๋ณด ์ถ”๊ฐ€
sengjun0624 Apr 11, 2025
1b2d314
:sparkles: feat: Init Project
sengjun0624 Apr 11, 2025
ad1497f
:sparkles: feat: Projcet Init
sengjun0624 Apr 11, 2025
5b6d998
:sparkles: feat: ์—์•ฝ ์ ‘์ˆ˜ ๋‚ด์—ญ ๋ฉ”์‹œ์ง€ ๋ธŒ๋กœ์ปค์— ๋„ฃ๊ธฐ
sengjun0624 Apr 11, 2025
8cfb700
:sparkles: feat: ์Šค์ผ€์ค„๋Ÿฌ ์—ฐ๊ฒฐ ๋ฐ ์˜ˆ์•ฝ ์™„๋ฃŒ ์ฒ˜๋ฆฌ
sengjun0624 Apr 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions week14/msa/config-repository
Submodule config-repository added at 219898
3 changes: 3 additions & 0 deletions week14/msa/config-service/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/gradlew text eol=lf
*.bat text eol=crlf
*.jar binary
37 changes: 37 additions & 0 deletions week14/msa/config-service/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/
38 changes: 38 additions & 0 deletions week14/msa/config-service/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.3.10'
id 'io.spring.dependency-management' version '1.1.7'
}

group = 'dev.petclinic'
version = '0.0.1-SNAPSHOT'

java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}

repositories {
mavenCentral()
}

ext {
set('springCloudVersion', "2023.0.5")
}

dependencies {
implementation 'org.springframework.cloud:spring-cloud-config-server'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}

tasks.named('test') {
useJUnitPlatform()
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
251 changes: 251 additions & 0 deletions week14/msa/config-service/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading