IntelliJ 插件可打印任何类中的字段
我是 IntelliJ 的新手。有没有 IntelliJ 的插件,我可以在其中选择一些字段并打印它们或创建 jsp 表单元素等。我知道它们有 toString
、equals
等。
I am new to IntelliJ. Is there a plugin for IntelliJ where I can select a few fields and print them or create jsp form elements, etc. I know they have toString
, equals
, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有插件可以做到这一点,并且编写一个“正确的插件”将很困难。
但是您可以使用“实时模板”实现类似的功能(至少对于打印字段,创建 JSP 表单是另一回事)
IntelliJ 附带了现成的“实时模板”,如“soutv”...
所以您输入 < code>soutv 在你的 java 编辑器中,然后输入
Tab
键,IntelliJ 将生成一个System.out.println("myField = " + myField)
并且你可以选择要打印的文件。查看 IntelliJ 文档以了解如何编写您自己的实时模板并查看一些示例。
No, there's no plugin for doing that, and write a "proper plugin" will be hard.
But you can achieve something similar using "Live Templates" (at least for printing fields, Creating a JSP form is a different story)
IntelliJ comes with ready-to-use "Live Templates" like "soutv"...
So you type
soutv
in your java editor, then typeTab
key and IntelliJ will generate aSystem.out.println("myField = " + myField)
and you can choose what file to print.Check the IntelliJ docs to know how to write your own Live Templates and see some examples.