I am migrating a legacy Java EE web application from orion server to WildFly.
The directory structure of the ear file is as below:
my_proj.ear
|--META-INF/MANIFEST.MF
|--META-INF/application.xml
|--web/a_few_js/jsp_files
|--web/WEB-INF/classes/a_few_java_classes
|--web/WEB-INF/web.xml
The application.xml has the following:
<application>
<display-name>my_proj</display-name>
<module>
<web>
<web-uri>web</web-uri>
</web>
</module>
</application>
I am able to deploy the ear successfully in JBoss. However, when I hit the url "localhost:8080/my_proj", I get a 404.
I am able to hit the URLs for war files based deployment without any issues. Am I missing anything here?
I am relatively new to Java EE and JBoss.
Please let me know if you need any additional information.