我有一个主要的JAVA项目,其中包含嵌入式 JETTY服务器。我需要使用此嵌入式jetty服务器部署多个 Gradle 项目。
我正在寻找所有项目的 WAR LESS 部署。这个概念在LINK中描述。
public static void main(String[] args) throws Exception
{
String webappDirLocation = "src/main/webapp/";
Server server = new Server(8080);
WebAppContext root = new WebAppContext();
root.setContextPath("/");
root.setDescriptor(webappDirLocation + "/WEB-INF/web.xml");
root.setResourceBase(webappDirLocation);
root.setParentLoaderPriority(true);
server.setHandler(root);
server.start();
server.join();
}
但当我尝试 Gradle 时,不正在工作(我在Gradle项目中获得了很多 ClassNotFoundException (s))项目。
我正在使用Spring Tool Suite IDE(eclipse)。帮助我们。