Skip to content

Commit 3c12cfb

Browse files
author
akuksin
committed
Add RPC with AMQP (Client and Server).
1 parent ec9992c commit 3c12cfb

File tree

28 files changed

+1028
-0
lines changed

28 files changed

+1028
-0
lines changed
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/
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
plugins {
2+
id 'org.springframework.boot' version '2.3.1.RELEASE'
3+
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
4+
id 'java'
5+
}
6+
7+
group = 'io.reflectoring'
8+
version = '0.0.1-SNAPSHOT'
9+
sourceCompatibility = '1.9'
10+
11+
configurations {
12+
compileOnly {
13+
extendsFrom annotationProcessor
14+
}
15+
}
16+
17+
repositories {
18+
mavenCentral()
19+
}
20+
21+
dependencies {
22+
implementation 'org.springframework.boot:spring-boot-starter-amqp'
23+
testImplementation('org.springframework.boot:spring-boot-starter-test') {
24+
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
25+
}
26+
testImplementation 'org.springframework.amqp:spring-rabbit-test'
27+
compileOnly 'org.projectlombok:lombok'
28+
annotationProcessor 'org.projectlombok:lombok'
29+
30+
implementation 'com.fasterxml.jackson.core:jackson-core:2.9.6'
31+
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.9.6'
32+
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.6'
33+
}
34+
35+
test {
36+
useJUnitPlatform()
37+
}
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Sat Jul 04 19:28:57 CEST 2020
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.4.1-all.zip
3+
distributionBase=GRADLE_USER_HOME
4+
distributionPath=wrapper/dists
5+
zipStorePath=wrapper/dists
6+
zipStoreBase=GRADLE_USER_HOME

spring-boot/request-response/client/gradlew

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

spring-boot/request-response/client/gradlew.bat

Lines changed: 104 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'client'
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package io.reflectoring.client;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
6+
@SpringBootApplication
7+
public class ClientApplication {
8+
9+
public static void main(String[] args) {
10+
SpringApplication.run(ClientApplication.class, args);
11+
}
12+
13+
}

0 commit comments

Comments
 (0)