1

当我尝试在 Eclipse 中格式化 xml 文件时,它会将每个字段放在一个新行上。相反,我希望每个属性都在一行上。例如,现在当我按下 CTRL+SHFT+F 时,eclipse 会像这样格式化它。

<hibernate-mapping package="com.server.entities">
<class
    name="Branch"
    table="Branch"
>
    <meta attribute="sync-DAO">false</meta>
    <id name="Id"
        type="java.lang.Long"
        column="id"
    >
        <generator class="native"/>
    </id>

    <property
        name="Created"
        column="created"
        type="timestamp"
        not-null="false"
        length="23"
    />
    <property
        name="LastUpdated"
        column="lastUpdated"
        type="timestamp"
        not-null="false"
        length="23"
    />
    <property
        name="CreatedBy"
        column="createdBy"
        type="java.lang.Long"
        not-null="false"
        length="19"
    />

但我想要的是

<hibernate-mapping package="com.kaizen.report.server.entities">
<class name="Branch" table="Branch">
    <meta attribute="sync-DAO">false</meta>
    <id name="Id" type="java.lang.Long" column="id">
        <generator class="native"/>
    </id>

<property name="Created" column="created" type="timestamp" not-null="false" length="23"/>
4

1 回答 1

2

如果您使用的是来自 eclipse.org 的 XML 编辑器,请转到 XML 编辑器首选项页面并更改选项以允许更长的行并且不将多个属性分别拆分为新行。

于 2012-10-23T08:00:59.720 回答