package com.goldenwater; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration; /** * 启动程序 * * @author goldenwater */ @SpringBootApplication(exclude = { DataSourceAutoConfiguration.class }) public class GoldenwaterApplication { public static void main(String[] args) { // System.setProperty("spring.devtools.restart.enabled", "false"); SpringApplication.run(GoldenwaterApplication.class, args); System.out.println(" 北京金水启动成功 "); } }