We used to have Tomcat
run configuration in IntelliJ. This deployed our webapp to a locally installed tomcat instance, and let us debug both java classes and jsp files.
Now we've made the switch to Maven, and we now run our Tomcat instance using the tomcat7 maven plugin with the maven goal: tomcat7:run-war
Debugging our java classes works perfectly, however (due to large amounts of legacy code) we also need to be able to debug JSP files.
Is it possible to debug JSPs in IntelliJ when an embedded Tomcat is launched from the maven plugin?