mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-28 15:05:18 +08:00
24 lines
632 B
Java
24 lines
632 B
Java
package com.jsowell;
|
|
|
|
import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
|
|
|
|
/**
|
|
* 启动程序
|
|
*
|
|
* @author jsowell
|
|
*/
|
|
|
|
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
|
|
@EnableDubbo
|
|
public class JsowellApplication {
|
|
|
|
public static void main(String[] args) {
|
|
// System.setProperty("spring.devtools.restart.enabled", "false");
|
|
SpringApplication.run(JsowellApplication.class, args);
|
|
}
|
|
|
|
}
|