如何导航到Lombok生成的实现
我想知道是否可以直接使用Intellij Idea生成的方法。
例如,在此给定的示例中:
@Builder
public class AClass {
private String body;
}
尝试转到Aclass#Builder
在acclass.builder()。build()。
Aclass
,而不是将我带到target
目录中生成的真实编译方法
I'm wondering if it would be possible to navigate directly to the methods generated by Lombok using Intellij IDEA.
For instance, for this given example:
@Builder
public class AClass {
private String body;
}
trying to go to the implementation of AClass#builder
in an instruction like AClass.builder().build()
results in Intellij navigating to AClass
, instead of taking me to the real compiled method, which is generated under target
directory
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请随时在此处创建一个问题: https://youtrack.jetbrains.jjetbrains.com/issues/issues/idea
目前,您无法改变行为。
Please feel free to create an issue here: https://youtrack.jetbrains.com/issues/IDEA
Currently you can't change the behavior.