Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 IntelliJ 的新手。是否有 IntelliJ 的插件,我可以在其中选择一些字段并打印它们或创建 jsp 表单元素等。我知道它们有toString,equals等。
toString
equals
不,没有插件可以做到这一点,写一个“合适的插件”会很困难。
但是您可以使用“实时模板”实现类似的效果(至少对于打印字段,创建 JSP 表单是另一回事)
IntelliJ 带有现成的“实时模板”,例如“soutv”......
所以你输入soutv你的java编辑器,然后输入Tabkey,IntelliJ会生成一个System.out.println("myField = " + myField),你可以选择要打印的文件。
soutv
Tab
System.out.println("myField = " + myField)
查看 IntelliJ 文档以了解如何编写自己的实时模板并查看一些示例。