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

net.ibizsys.central.cloud.gateway.boot.GatewayApplication Maven / Gradle / Ivy

There is a newer version: 8.1.0.559
Show newest version
package net.ibizsys.central.cloud.gateway.boot;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.context.annotation.ComponentScan;

@EnableDiscoveryClient(autoRegister=false)
@SpringBootApplication
@ComponentScan("net.ibizsys.central.cloud.gateway")
public class GatewayApplication {

	public static void main(String[] args) {
		SpringApplication.run(GatewayApplication.class, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy