java ee - Configuring ear web module in Wildfly -


i migrating legacy java ee web application orion server wildfly.

the directory structure of ear file 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 following:

<application>     <display-name>my_proj</display-name>     <module>     <web>         <web-uri>web</web-uri>     </web>     </module> </application> 


i able deploy ear in jboss. however, when hit url "localhost:8080/my_proj", 404.

i able hit urls war files based deployment without issues. missing here?

i relatively new java ee , jboss.

please let me know if need additional information.

you configured web-uri web , try address http://localhost:8080/web if port right.


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -