You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
571 B
20 lines
571 B
package cc.niushuai.bastionserver; |
|
|
|
import com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure; |
|
import org.springframework.boot.SpringApplication; |
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
|
/** |
|
* Db Bastion Server App Entrance |
|
* |
|
* @author: niushuai233 |
|
* @date: 2022/12/22 17:28 |
|
*/ |
|
@SpringBootApplication(exclude = DruidDataSourceAutoConfigure.class) |
|
public class DbBastionServerApplication { |
|
|
|
public static void main(String[] args) { |
|
SpringApplication.run(DbBastionServerApplication.class, args); |
|
} |
|
|
|
}
|
|
|