| | |
| | |
|
| | | import org.springframework.boot.SpringApplication;
|
| | | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
| | | import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
| | | import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
|
| | | import org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration;
|
| | |
|
| | | /**
|
| | | * 网关启动程序
|
| | | *
|
| | | * @author ruoyi
|
| | | */
|
| | | @EnableDiscoveryClient
|
| | | @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
|
| | | public class RuoYiGatewayApplication
|
| | | {
|