I have a java web application that can be debugged using IntelliJ or Eclipse through the local tomcat 7 configuration for the computer (localhost:8080/javaapp)
I was hoping I could link to static content that is not part of the Java application locally installed in /staticapp . However, IntelliJ starts tomcat with only a java application available, another application does not start or does not serve files.
Is there a way to configure tomcat so that: - /staticapp also starts when / javaapp starts, so it can be accessed from / javapp pages - tomcat will always execute static content from the / staticapp folder while it works ... The staticapp directory tree is not is a real "web application", it contains only folders with javascript/css/images
thanks
source share