I work with Spring framework and have a lot of lines in .java:
new ModelAndView("/reports/distribution", map);
and in dispatcher-servlet.xml:
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> </bean>
I think that this info is enough for goto file PROJ-ROOT/src/main/jsp/reports/distribution.jsp from java code.
Is there any standard command or extension for NetBeans with implementation of such command?