嵌入式jetty的Java web.xml位置

时间:2016-07-13 06:59:08

标签: java jetty web.xml project-structure

我正在尝试了解我们应该如何配置Web应用程序。 现在我有一个带嵌入式码头的简单gradle项目

layout structure

依赖关系:

dependencies {
    compile('org.eclipse.jetty:jetty-servlet:9.3.10.v20160621')
    compile('org.eclipse.jetty:jetty-webapp:9.3.10.v20160621')

    testCompile group: 'junit', name: 'junit', version: '4.11'
}

申请主:

package test;

import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.webapp.WebAppContext;

public class App {
    public static void main(String[] args) throws Exception {

        System.out.println(">> Running");
        WebAppContext webAppContext = new WebAppContext();
        webAppContext.setDescriptor("src/main/resources/WEB-INF/web.xml");
        webAppContext.setResourceBase("/");
        webAppContext.setContextPath("/");

        Server server = new Server(8080);
        server.setHandler(webAppContext);
        server.start();
        server.join();
    }
}

在web.xml中,我只定义了ServletContextListener实现,以查找它是否被应用程序捕获。

我的问题是:webAppContext.setDescriptor("src/main/resources/WEB-INF/web.xml") Jetty只能通过这个奇怪的位置路径找到web.xml。

为什么我需要从项目文件夹中定位它? 如果我用gradle运行jar任务,那就不会是jar里面的任何src目录。

是否存在类似于:App.class.getResource("/WEB-INF/web.xml")和加载与classpath相关的web.xml的方法?

2 个答案:

答案 0 :(得分:1)

似乎是一些类加载器问题。

经过一些进一步的搜索后,我结束了下一个解决方案:

public class App {
    private static final String WEBAPP_RESOURCES_LOCATION = "webapp";

    public static void main(String[] args) throws Exception {
        System.out.println(">> Running");

        WebAppContext webAppContext = new WebAppContext();
        webAppContext.setContextPath("/");

        URL webAppDir = Thread.currentThread().getContextClassLoader().getResource(WEBAPP_RESOURCES_LOCATION);
        webAppContext.setResourceBase(webAppDir.toURI().toString());

        // if setDescriptor set null or don't used jetty looking for /WEB-INF/web.xml under resource base 
//        webAppContext.setDescriptor(webAppDir.toURI().toString() + "web.xml");

        Server server = new Server(8080);
        server.setHandler(webAppContext);
        server.start();
        server.join();
    }
}

布局:

enter image description here

感谢github用户参与考试examle

答案 1 :(得分:0)

你的web.xml应该在

src/main/webapp/WEB-INF

UPD:抱歉,在完成帖子之前按下提交。

上面适用于我,然后我可以运行测试:

Server server; //jetty server

private static Integer portNum = 9999;
private static String ENDPOINT_URL = "http://localhost:" + portNum + "/appName/";

@Before 
public void startJetty() throws Exception{
    server = new Server(portNum);
    server.setStopAtShutdown(true);
    WebAppContext webAppContext = new WebAppContext();
    webAppContext.setContextPath("/appName");
    webAppContext.setResourceBase("src/main/webapp");       
    webAppContext.setClassLoader(getClass().getClassLoader());
    server.setHandler(webAppContext);
    server.start();
}

@After
public void stopJetty(){
    try {
        server.stop();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

@Test
public void serverNotNull(){
    assertNotNull("jetty must be initialised", server);
}