All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.employee.EmployeeServiceApplication.kt Maven / Gradle / Ivy

The newest version!
package org.octopusden.employee

import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.boot.context.properties.ConfigurationPropertiesScan
import org.springframework.cloud.netflix.eureka.EnableEurekaClient
import org.springframework.context.annotation.Configuration

@EnableEurekaClient
@SpringBootApplication
@Configuration
@ConfigurationPropertiesScan
class EmployeeServiceApplication

fun main(args: Array) {
    SpringApplication.run(EmployeeServiceApplication::class.java, *args)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy