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/");
    }
}

猜你喜欢

转载自blog.csdn.net/qq_16127313/article/details/83006524