請先到 Tomcat 網站下載嵌入式 Tomcat 的 JAR  : tomcat-embed-core.jar


package main;

import java.io.File;
import org.apache.catalina.startup.Tomcat;

public class Main {

    public static void main(String[] args) {

        String prjectPath = new File("").getAbsolutePath();
        Tomcat tomcat = new Tomcat();
        tomcat.setPort(8080);
        tomcat.setBaseDir(prjectPath + "/build/tmp/tomcat");
        try {
            tomcat.addWebapp("", prjectPath + "/src/");
            tomcat.start();
            tomcat.getServer().await();
        } catch (Exception e) {
        }

    }

}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 黃彥霖 的頭像
    黃彥霖

    彥霖 實驗筆記

    黃彥霖 發表在 痞客邦 留言(0) 人氣()