Skip to content

Commit f9aa66f

Browse files
committed
[#8] update classes and packages for simple microservice
1 parent 14366b3 commit f9aa66f

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.springframework.boot.autoconfigure.SpringBootApplication
44
import org.springframework.context.annotation.Bean
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.springframework.stereotype.Component
44
import org.springframework.web.reactive.function.server.ServerRequest
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
data class SimpleResponse(val message: String = "", val from : String = "")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.springframework.context.annotation.Bean
44
import org.springframework.stereotype.Component
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import reactor.core.publisher.Mono
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import java.util.*
44

simple-microservice/src/main/kotlin/org/learning/by/example/SpringKubeGateway/SimpleMicroservice/main.kt renamed to simple-microservice/src/main/kotlin/org/learning/by/example/spring/kube/playground/simple/microservice/main.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.springframework.boot.runApplication
44

simple-microservice/src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
spring:
22
application:
3-
name: SimpleMicroservice
3+
name: simple-microservice
44
eureka:
55
client:
66
serviceUrl:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.junit.Test
44
import org.junit.runner.RunWith
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.learning.by.example.SpringKubeGateway.SimpleMicroservice
1+
package org.learning.by.example.spring.kube.playground.simple.microservice
22

33
import org.junit.Test
44
import org.springframework.test.context.ActiveProfiles

0 commit comments

Comments
 (0)