1. 程式人生 > >Spring Web工程最快轉Spring Boot工程方法

Spring Web工程最快轉Spring Boot工程方法

  1. 刪除web.xml
  2. 匯入springboot pom.xml
  3. 新增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/");
    }
}