Is there a generic jsp debuging with IDEA "HowTo"
Hi,
I am still having trouble determing the best way to arrangment my project's directories, and the project settings, so that I can develop, debug, and deploy jsp with IDEA.
I was wondering if anyone was aware of best practices guide, or any other relevant tips.
Thanks.
请先登录再写评论。
For what it's worth, my file structure looks like this
Project directory
src (all source files here)
webapps
myapp
some jsp files
WEB-INF
classes
lib
tlds
web.xml
jsps
more jsps
Then I point the web app directory to myapp directory, and I point the compile path of the project to myapp/WEB-INF/classes
I fire up tomcat and can do debugging and when I recompile a class file Tomcat reloads it nicely and I can keep going without having to restart. Debugging JSPS works fine too of course.
Hope this helps.
R