zhou zhou
昨天 1724f77c35022b643c28dd3e5547679a5edc2d49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.vincent.rsf.ai.gateway;
 
import com.alibaba.druid.spring.boot3.autoconfigure.DruidDataSourceAutoConfigure;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
 
@SpringBootApplication(exclude = {
        DataSourceAutoConfiguration.class,
        DruidDataSourceAutoConfigure.class
})
public class GatewayBoot {
 
    public static void main(String[] args) {
        SpringApplication.run(GatewayBoot.class, args);
    }
 
}