17 lines
523 B
Java
17 lines
523 B
Java
package demo;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
|
import org.springframework.hateoas.config.EnableHypermediaSupport;
|
|
|
|
@SpringBootApplication
|
|
@EnableDiscoveryClient
|
|
@EnableHypermediaSupport(type = {EnableHypermediaSupport.HypermediaType.HAL})
|
|
public class AccountWeb {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(AccountWeb.class, args);
|
|
}
|
|
}
|