navigating to files
If I in a include statement in jsp push ctrl-B I will jump to the file included if the path is relative.
I can't jump if the path is absolute however. Is there an easy way to say, the root of the web app is >this< directory and point it out somewhere?
next, I would like the same behaviour for strings in the servlets.
String target = "/myPath/goingHere/my.jsp";
getServletContext().getRequestDispatcher(target).forward(request, response);
is there any way to achieve this currently?
请先登录再写评论。
Well, recent EAP builds have web application support. Check your project properties and try to configure a web app for your project.
isn't that subject to using the 'right' app servers?