1.Ctrl+鼠标左键
在IDE工具中,我们经常使用Ctrl+鼠标左键来查看一个东西。
借助视图解析器org.springframework.web.servlet.view.InternalResourceViewResolver ,根据请求跳转到指定页面。
<!-- springDispatcherServlet-servlet.xml -->
<!-- 配置视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
@RequestMapping("/index")
public String index(){
return "index"; // 跳转到index.jsp页面
}
在IDEA中,按Ctrl+鼠标左键点击return "index"; 中的index ,会打开index.jsp 文件。
但是,这里遇到了Cannot find declaration to go to的问题。
2.解决问题
在打开IDEA时,出现了以下提示。
考虑到跳转页面是视图解析器的作用,而视图解析器需要在Spring的配置文件中配置。猜测出现Cannot find declaration to go to这个问题的原因是IDEA不识别正在点击的东西是什么,于是尝试解决这里提示的问题。
添加Spring Module之后,这里就没有Unmapped Spring configuration files这个提示了。
更重要的是,按Ctrl+鼠标左键点击return "index"; 中的index ,也可以打开index.jsp 文件了!
参考:
|
请发表评论