以下代码来自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以保持第一格式样式?我尝试了很多,但没有效果。
答案 0 :(得分:4)
你必须在eclipse中使用Code Formatter
。您可以通过以下路径找到它:
windows
菜单和Preferences
项目。java
。code style
的{{1}}子树。java
leaf。Formatter
按钮,然后修改自定义格式并保存。我建议你保存自定义环境,例如格式化程序,并在其他地方使用它。 Edit
将Eclipse
信息保存在xml文件中。你可以指定这个文件的路径。
以下链接很有用: