在JSF中读取和写入XML文件

时间:2014-06-25 05:57:41

标签: xml jsf jsf-2.2

我没有在网上找到关于如何在JSF中读/写XML文档的内容。我在JSP中使用XALAN知道JSTL。例如,

以下XML文件在/WEB-INF下定义。

<?xml version="1.0" encoding="UTF-8"?>

<fruits>
    <fruit>
        <name>Orange</name>
        <price>10</price>
    </fruit>

    <fruit>
        <name>Banana</name>
        <price>20</price>
    </fruit>

    <fruit>
        <name>Apple</name>
        <price>30</price>
    </fruit>
</fruits>

可以在JSP中阅读本文档,如下所示。

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>

<c:import var="items" url="/WEB-INF/TextXML.xml"/>
<x:parse var="fruits" doc="${items}"/>

<table rules="all" border="1">
    <tr>
        <th>index</th>
        <th>Fruit Name</th>
        <th>Price</th>
    </tr>

    <x:forEach var="item" select="$fruits/fruits/fruit" varStatus="loop">
        <tr>
            <td><c:out value="${loop.index+1}"/></td>
            <td><x:out select="$item/name" /></td>
            <td><x:out select="$item/price" /></td>
        </tr>
    </x:forEach>
</table>

这会填充一个包含三列的HTML表格。

如何在JSF中实现相同的功能,可能使用JAXB或其他东西?

1 个答案:

答案 0 :(得分:5)

您确实可以使用JAXB

假设您已经有一个代表<fruit>的javabean。您甚至可以重用现有的JPA实体。

public class Fruit {

    private String name;
    private BigDecimal price;

    // Add/generate getters+setters.
}

(请注意,javabean类和属性名称必须与XML元素名称<fruit><name><price>完全匹配,否则您需要@XmlElement(name="actualXmlElementName")那些)

现在,创建另一个表示<fruits>的javabean,纯粹用于JAXB(它需要一个表示XML根元素的@XmlRootElement类,即使XML文档基本上只包含一个实体列表)

@XmlRootElement
public class Fruits { // Classname must match <fruits>, otherwise set it as @XmlRootElement(name="fruits")

    @XmlElement(name="fruit") // Name must thus match <fruit>. We could also make the property name "fruit" so that we can omit @XmlElement, but a getFruit() method returning a list of fruits isn't self-documenting.
    private List<Fruit> list;

    public Fruits() {
        // Keep default c'tor alive.
    }

    public Fruits(List<Fruit> list) {
        this.list = list;
    }

    public List<Fruit> getList() { 
        return list;
    }

}

关于阅读/写作,您可以在JSF中完整地阅读/WEB-INF,如下所示:

InputStream input = externalContext.getResourceAsStream("/WEB-INF/fruits.xml");

但写作是一个独特的故事。您不应该将文件写入部署空间。由于显而易见的原因,无论何时重新部署WAR,所有更改都将丢失,因此不打算将其作为永久存储位置。您需要将其写入部署空间之外的某个固定路径。在下面的示例中,我假设文件已移至服务器磁盘文件系统上的/var/webapp/fruits.xml

因此,您可以使用JAXB在托管bean中读取和写入XML文件,如下所示:

@Named
@RequestScoped
public class Bean {

    private File file = new File("/var/webapp/fruits.xml");
    private JAXBContext jaxb; // Can be application scoped. It's thread safe.
    private List<Fruit> fruits;

    @PostConstruct
    public void init() throws JAXBException, IOException {
        jaxb = JAXBContext.newInstance(Fruits.class);
        fruits = ((Fruits) jaxb.createUnmarshaller().unmarshal(file)).getList();
    }

    public void save() throws JAXBException {
        jaxb.createMarshaller().marshal(new Fruits(fruits), file);
    }

    public List<Fruit> getFruits() { 
        return fruits;
    }

}

您可以通常的方式在JSF <h:dataTable>中显示它以进行编辑。

<h:dataTable value="#{bean.fruits}" var="fruit">
    <h:column><h:inputText value="#{fruit.name}" /></h:column>
    <h:column><h:inputText value="#{fruit.price}" /></h:column>
</h:dataTable>