在 Eclipse 中拦截构建请求 - 编译前
我想知道在 Eclipse 中是否可以通过某种侦听器在用户点击“保存”或“ctrl + s”时进行拦截。我想要做的是确定项目中的文件何时发生更改,并在文件实际编译之前收到此通知,以便我可以更新类中的属性。之后,我希望按照正常方式编译该文件。这有可能吗?我想类似于数据库触发器的想法。
I was wondering in Eclipse if it's possible to intercept when a user hits save or 'ctrl + s' via some sort of listener. What I want to do is determine when a file in a project changes and receive this notification before the file is actually compiled, so that I can update a property in the class. Afterwards, I would like the file to be compiled as per normal. Is this at all possible? Similar to the idea of a database trigger I suppose.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会查看 org.eclipse.jdt.core.compilationParticipant。从描述来看:
I would look at
org.eclipse.jdt.core.compilationParticipant
. From the description: