2025-11-24 16:19:09 +08:00
|
|
|
package com.tongran.gateway;
|
2025-08-11 18:46:44 +08:00
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 网关启动程序
|
|
|
|
|
*
|
2025-11-24 16:19:09 +08:00
|
|
|
* @author tongran
|
2025-08-11 18:46:44 +08:00
|
|
|
*/
|
|
|
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class })
|
2025-11-24 16:19:09 +08:00
|
|
|
public class TongRanGatewayApplication
|
2025-08-11 18:46:44 +08:00
|
|
|
{
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
|
{
|
2025-11-24 16:19:09 +08:00
|
|
|
SpringApplication.run(TongRanGatewayApplication.class, args);
|
2025-12-26 19:00:41 +08:00
|
|
|
System.out.println("彤然网关启动成功");
|
2025-08-11 18:46:44 +08:00
|
|
|
}
|
|
|
|
|
}
|