Intellij IDEA 10隐藏.aj(aspectj)文件
我有一个 ROO 项目,我正在 Intellij 中开发它,如果我可以从模块视图树中隐藏所有方面文件 (.aj),那将会很方便。有人知道怎么做吗?或者是否有可能?
I have a ROO project, and I am developing it in Intellij, it would be handy if I could hide all the aspect files (.aj) from the module view tree. Anybody know how? or if it is possible at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
上面的答案(更改设置中的配置)导致 Intellij 无法检测到 aj 提供的所有方法,并导致到处出现错误。
配置新的范围似乎是一个更好的答案。
在项目侧边栏设置中使用“编辑范围”(可在“设置”->“项目设置”->“范围”中找到)
添加新范围,例如“Non-Roo”
使用“!*_Roo_*”这样的模式
然后您可以在两个范围之间切换以显示/隐藏 Roo 文件。
The above answer (changing configuration in settings) caused all the methods provided by aj can't be detected by Intellij and causing error here and there.
Configuring a new scope seems to be a better answer.
Use "Edit Scopes" in your Project sidebar setting (found in Settings -> Project Settings -> Scopes)
Add a new scope, e.g. "Non-Roo"
with pattern like "!*_Roo_*"
Then you can switch between the two scopes to show/hide the Roo files.
设置->文件类型 ->忽略文件和文件夹(位于底部)
Settings -> File Types -> Ignore files and folders (at the bottom)
为了防止过滤掉非 Roo 管理的方面,请遵循 Timofei 的导航说明
并添加 *_Roo_*.aj;到列表末尾。
To prevent filtering out non-Roo managed aspects, follow Timofei's navigation instructions
and add *_Roo_*.aj; to the end of the list.