Idea and Spring MVC
I'm using Spring 2.0 (so no annotations for controllers). My spring configuration file looks like this:
<bean >
<property name="interceptors">
<list>
<ref bean="sessionTimeoutInterceptor"/>
<ref bean="urlAccessInterceptor"/>
<ref bean="scenarioTabInterceptor"/>
<ref bean="messagingInterceptor"/>
<ref bean="scenarioInterceptor"/>
</list>
</property>
<property name="mappings">
<props>
<prop key="/new_scenario_map.htm">scenarioMapController</prop>
</props>
</property>
</bean>
Right now I cannot click on the "scenarioMapController" to go to the definition/declaration of that bean. Any thing I can do to make it happen?
Regards.
请先登录再写评论。