33 lines
931 B
Java
33 lines
931 B
Java
|
|
package com.qihang.oms.api;
|
||
|
|
|
||
|
|
import org.springframework.boot.SpringApplication;
|
||
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||
|
|
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
||
|
|
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
|
||
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.ComponentScan;
|
||
|
|
import org.springframework.web.client.RestTemplate;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Hello world!
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@EnableFeignClients(basePackages = "com.qihang.oms.api")
|
||
|
|
@EnableDiscoveryClient
|
||
|
|
@SpringBootApplication
|
||
|
|
public class Api
|
||
|
|
{
|
||
|
|
public static void main( String[] args )
|
||
|
|
{
|
||
|
|
System.out.println( "Hello World!" );
|
||
|
|
SpringApplication.run(Api.class, args);
|
||
|
|
}
|
||
|
|
|
||
|
|
@Bean
|
||
|
|
@LoadBalanced
|
||
|
|
public RestTemplate restTemplate() {
|
||
|
|
return new RestTemplate();
|
||
|
|
}
|
||
|
|
}
|