Giter Club home page Giter Club logo

Comments (3)

nardopessoa avatar nardopessoa commented on May 24, 2024 1

Recently I've been working on a project with Jetty embedded and I got the same problem. After some googling I could solve the problem by adding the following settings on the WebAppContext object:

    import org.eclipse.jetty.util.resource.PathResource;
    import org.eclipse.jetty.webapp.WebAppContext;

    ClassLoader cl = this.getClass().getClassLoader();
    URL[] urls = ((URLClassLoader)cl).getURLs();
    for(URL url: urls){
        // if(url.getFile().endsWith("/target/classes/")) {
        if(new File(url.toURI()).isDirectory()) {
            webAppContext.getMetaData().addContainerResource(new PathResource(new File(url.toURI())));
        }
    }
    webAppContext.setConfigurations(new Configuration[] {
            new org.eclipse.jetty.webapp.WebInfConfiguration()
            , new org.eclipse.jetty.webapp.WebXmlConfiguration()
            , new org.eclipse.jetty.webapp.MetaInfConfiguration()
            , new org.eclipse.jetty.webapp.FragmentConfiguration()
            , new org.eclipse.jetty.webapp.JettyWebXmlConfiguration()
        });
    webAppContext.setAttribute(
            "org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern", ".*/.*\\.jar$|.*/classes/.*");
    webAppContext.setAttribute(
            "org.eclipse.jetty.server.webapp.WebInfIncludeJarPattern", ".*/.*\\.jar$|.*/classes/.*");

Before changing anything and making a pull-request, I preferred to share the solution looking for the community criticism and/or suggestions.

I hope this helps.

from eclipse-jetty-plugin.

thred avatar thred commented on May 24, 2024

Do you have a sample project? It would help me a lot to reproduce the problem. Have a look at the sample at https://github.com/eclipse-jetty/eclipse-jetty-plugin/tree/master/samples. It would be cool, if I could add a sample there :)

from eclipse-jetty-plugin.

nardopessoa avatar nardopessoa commented on May 24, 2024

I tried to sending the example project to github, but I'm a newbie with git.

I hope this helps.

PS.My english is very bad. Sorry about that.

Att.
Leonardo Pessoa

2015-10-10 14:29 GMT-03:00 Manfred Hantschel [email protected]:

Do you have a sample project? It would help me a lot to reproduce the
problem. Have a look at the sample at
https://github.com/eclipse-jetty/eclipse-jetty-plugin/tree/master/samples.
It would be cool, if I could add a sample there :)


Reply to this email directly or view it on GitHub
#17 (comment)
.

from eclipse-jetty-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.