1
votes

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?

1
Sorry, i do not get it. Why don't you use "open file" and paste "distribution.jsp" into the search field?Ben
seems that you forget to note that you use the "Quick FileChooser" plugin...gavenkoa

1 Answers

1
votes

As Ben suggested for goto JSP file feature "Quick FileChooser" plug-in can be used.

But this solution isn't perfect as use need select and copy JSP file name...