rename files
- HlaejaServiceApplication to Application - rename application.properties to application.yml
This commit is contained in:
@@ -4,8 +4,8 @@ import org.springframework.boot.autoconfigure.SpringBootApplication
|
|||||||
import org.springframework.boot.runApplication
|
import org.springframework.boot.runApplication
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
class HlaejaServiceApplication
|
class Application
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(vararg args: String) {
|
||||||
runApplication<HlaejaServiceApplication>(*args)
|
runApplication<Application>(*args)
|
||||||
}
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
spring.application.name=hlaeja-service
|
|
||||||
3
src/main/resources/application.yml
Normal file
3
src/main/resources/application.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
spring:
|
||||||
|
application:
|
||||||
|
name: hlaeja-service
|
||||||
@@ -4,7 +4,7 @@ import org.junit.jupiter.api.Test
|
|||||||
import org.springframework.boot.test.context.SpringBootTest
|
import org.springframework.boot.test.context.SpringBootTest
|
||||||
|
|
||||||
@SpringBootTest
|
@SpringBootTest
|
||||||
class HlaejaServiceApplicationTests {
|
class ApplicationTests {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun contextLoads() {
|
fun contextLoads() {
|
||||||
Reference in New Issue
Block a user