从 struts.xml 导航到 Eclipse 中操作的发生
我在 struts.xml 中有一些代码,例如:
<action name="viewApplicationPDF"
class="com.xxx.abc.web.action.XApplicationPDFAction">
<result name="success">/WEB-INF/templates/xApplication.jsp</result>
</action>
我希望能够快速跳转到包含操作用法的 jsp 文件中出现的操作“viewApplicationPDF”,例如:
<a href="<s:url action="viewApplicationPDF"/>/s:url>Used here</a>
尽管这种跳转模式相当频繁,我还没有找到在 Eclipse 中执行此操作的快速方法。目前,我必须对“viewApplicationPDF”进行“文件搜索”,然后在搜索结果中打开目录树——但这一切都很慢。有插件或其他工具可以解决我的问题吗?
I have some code within struts.xml like:
<action name="viewApplicationPDF"
class="com.xxx.abc.web.action.XApplicationPDFAction">
<result name="success">/WEB-INF/templates/xApplication.jsp</result>
</action>
I want to be able to quickly jump to the occurrences of the action "viewApplicationPDF" within jsp files containing the action usage, like:
<a href="<s:url action="viewApplicationPDF"/>/s:url>Used here</a>
In spite of the fact that this jump pattern is quite frequent, I have not found a quick way to do this in Eclipse. Currently I have to do a "File Search" for "viewApplicationPDF" and then open the directory tree within the search results -- but all this is slow. Is there a plugin or some other tool to solve my problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不幸的是没有这样的插件(至少我知道)。
您提到的替代方法:
Ctrl
+Shift
+G
或右键单击该单词并选择References
-->工作区
。这与您提到的搜索相同。
Unfortunately there's no such plugins (at least that I'm aware of).
An alternative to what you've mentioned:
Ctrl
+Shift
+G
or right-click on the word and selectReferences
-->Workspace
.This does the same search as what you mentioned.
创建文件搜索的快捷方式:
窗口>自定义视角>>命令组可用性>搜索>菜单栏详细信息>>文件。
您将获得按键绑定的工具提示。单击链接并选择绑定输入字段。单击组合键,例如 Shift+F,然后点击“应用”。
现在您可以选择文件中的文本,然后按 Shift+F+Enter 即可开始搜索。
您可以在搜索对话框中修改文件名模式以适应。
(我正在使用 Helios 发行版)
也很有用:
从 http://andrei.gmxhome 安装适用于 Eclipse 的 AnyEdit 工具插件.de/anyedit/
允许您导航到光标下的文件 (ctrl+alt+R) 或打开光标下的类型 (ctrl+alt+T)。
Create a shortcut for File Search:
Window > Customize perspective > Command Groups Availability > Search > Menubar details > File.
You'll get a tool tip for Key bindings. Click on the link and select the Binding input field. Click a combination of keys, say Shift+F and hit Apply.
Now you can select the text in the file and hit Shift+F+Enter and the search is on.
You can modify the File name patterns in the search dialog to suit.
(I'm using Helios distribution)
Also useful:
Install the AnyEdit tools plugin for Eclipse from http://andrei.gmxhome.de/anyedit/
Allows you to navigate to file under cursor (ctrl+alt+R) or open type under cursor (ctrl+alt+T).
已经过去十年了,我仍然在为刚刚开始使用 Eclipse 的人写这篇文章。您可以下载插件 StrutsClipse。
Well its past a decade, still I am writing this for someone who just started using Eclipse. You may download the Plugin StrutsClipse.