我试图在java应用程序中嵌入tomcat。我搜索谷歌但没有运气。我无法找到好的教程。是否有任何完整的教程或api文档嵌入tomcat。 此问题可能与another question重复。但它看起来很古老。我读到tomcat 7上的tomcat 7 api大大改进了。所以我认为它是旧的。任何教程链接都很受欢迎。
答案 0 :(得分:13)
有一个关于嵌入tomcat 8 here的最新教程。
它的要点:
public static void main(String[] args) throws Exception {
Tomcat tomcat = new Tomcat();
tomcat.setPort(8080);
//actually deploy stuff on your tomcat by defining contexts
tomcat.start();
tomcat.getServer().await();
}