Spring Web工程最快轉Spring Boot工程方法
阿新 • • 發佈:2018-11-09
- 刪除web.xml
- 匯入springboot pom.xml
- 新增springboot 啟動程式碼(舉例)
import java.io.IOException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.CommandLineRunner; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.ImportResource; @SpringBootApplication @ImportResource({"classpath:applicationcontext.xml", "classpath:spring-mvc.xml"}) public class Application implements CommandLineRunner { private static final Logger LOGGER = LoggerFactory.getLogger(Application.class); public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override public void run(String... args) throws IOException { LOGGER.info("★★★★★★★★ now open Browser ★★★★★★★★ "); Runtime.getRuntime().exec("cmd.exe /c start /min http://127.0.0.1:8080/druid/"); Runtime.getRuntime().exec("cmd.exe /c start /min http://127.0.0.1:8080/"); } }