Skip to content
Snippets Groups Projects
Commit 9acaf3e2 authored by Julian Horner's avatar Julian Horner
Browse files

Add starting class for eureka server

parent 177a16b9
No related branches found
No related tags found
No related merge requests found
/*
* Copyright 2019 (C) by Julian Horner.
* All Rights Reserved.
*/
package de.rtuni.ms.euka;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* Eureka server for registering services.
*
* @author Julian
*
*/
@SpringBootApplication
@EnableEurekaServer
public class Application {
//---------------------------------------------------------------------------------------------
/**
* Starts the application.
*
* @param args The arguments
*/
public static void main(final String[] args) { SpringApplication.run(Application.class, args); }
//---------------------------------------------------------------------------------------------
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment