Error in context-root javaEE using Jboss

0

I have a project with error, I have these error messages in the configuration files: 404 - Not Found

jboos-web.xml web.xml

    
asked by anonymous 11.09.2017 / 23:39

1 answer

0

context-root should not include the slash. It should only be:

<jboss-web>
    <context-root>matriz</context-root>
</jboss-web>

For this to take effect, remove the project from the server and deploy again.

    
11.09.2017 / 23:48