Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. app // parent/root project folder
  2. |- src
  3. |- target
  4. |- app.war // common features
  5. |- app-payment // child/module folder
  6. |- src
  7. |- target
  8. |- app-payment.war // shop/pay features
  9.  
  10. requests for
  11. localhost:8080/app/payment --goto--> $CATALINA_HOME/webapps/app-payment.war (or any other locations, doesn't matter)
  12. other requests for
  13. localhost:8080/app --goto--> $CATALINA_HOME/webapps/app.war
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement