如何配置eclipse以保持这种代码格式?

时间:2012-04-03 07:45:38

标签: java eclipse code-formatting playframework-2.0

以下代码来自playframework-2.0样本:

/**
 * Display the dashboard.
 */
public static Result index() {
    return ok(
        dashboard.render(
            Project.findInvolving(request().username()),
            Task.findTodoInvolving(request().username()),
            User.find.byId(request().username())
        )
    );
}

它看起来不错,但是当我使用eclipse的代码格式时,它变成了:

/**
 * Display the dashboard.
 */
public static Result index() {
    return ok(dashboard.render(
        Project.findInvolving(request().username()),
        Task.findTodoInvolving(request().username()),
        User.find.byId(request().username())
        ));
}

如何配置eclipse以保持第一格式样式?我尝试了很多,但没有效果。

1 个答案:

答案 0 :(得分:4)

你必须在eclipse中使用Code Formatter。您可以通过以下路径找到它:

  1. windows菜单和Preferences项目。
  2. 转到左侧树中的java
  3. 转到code style的{​​{1}}子树。
  4. 选择java leaf。
  5. 点击Formatter按钮,然后修改自定义格式并保存。
  6. 我建议你保存自定义环境,例如格式化程序,并在其他地方使用它。 EditEclipse信息保存在xml文件中。你可以指定这个文件的路径。

    以下链接很有用: