java – 通过HotKey防止Eclipse中的代码格式化

我知道可以通过包含代码来阻止 eclipse中的代码格式化
// @formatter:off
// my awesome formatted code...
public Set<Person> transformCustomersToPersons(List<Customer> customers){

    Set<Person> persons = new HashSet<Person>();
    for (Customer customer : customers) {
        persons.add(new Person(
                customer.getFirstname(),customer.getLastname(),customer.getTitle(),customer.getBirthday(),customer.getAddress(0).getCity(),customer.getAddress(0).getStreet(),customer.getAddress(0).getHousenumber(),customer.isMan() ? "m" : "w",customer.getCardNumber())
        );
    }
    return persons;
}
// @formatter:on

但我不想一直手动编写它.只需标记代码,按热键即可防止格式化,这将是完美的.

谁知道怎么样?谢谢!

解决方法

是的,这是可能的:

创建新模板:
Windows->偏好设置 – > Java->编辑器 – >模板 – >新增功能(屏幕截图)

给模板命名像非格式化器并放置模式:

// @formatter:off
   ${line_selection}${cursor}
   // @formatter:on

现在,您可以选择文本并键入Alt Shift Z和一些模板 – 此处为4

相关文章

ArrayList简介:ArrayList 的底层是数组队列,相当于动态数组。与 Java 中的数组相比,它的容量能动态增...
一、进程与线程 进程:是代码在数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位。 线程...
本文为博客园作者所写:&#160;一寸HUI,个人博客地址:https://www.cnblogs.com/zsql/ 简单的一个类...
#############java面向对象详解#############1、面向对象基本概念2、类与对象3、类和对象的定义格式4、...
一、什么是异常? 异常就是有异于常态,和正常情况不一样,有错误出错。在java中,阻止当前方法或作用域...
Collection接口 Collection接口 Collection接口 Collection是最基本的集合接口,一个Collection代表一组...