|
Hibernate example source code file (xml.pot)
The Hibernate xml.pot source code# # AUTHOR <EMAIL@ADDRESS>, YEAR. # msgid "" msgstr "" "Project-Id-Version: 0\n" "POT-Creation-Date: 2010-02-11T05:38:16\n" "PO-Revision-Date: 2010-02-11T05:38:16\n" "Last-Translator: Automatically generated\n" "Language-Team: None\n" "MIME-Version: 1.0\n" "Content-Type: application/x-publican; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Tag: title #, no-c-format msgid "XML Mapping" msgstr "" #. Tag: para #, no-c-format msgid "<emphasis> XML Mapping is an experimental feature in Hibernate 3.0 and is currently under active development. " msgstr "" #. Tag: title #, no-c-format msgid "Working with XML data" msgstr "" #. Tag: para #, no-c-format msgid "Hibernate allows you to work with persistent XML data in much the same way you work with persistent POJOs. A parsed XML tree can be thought of as another way of representing the relational data at the object level, instead of POJOs." msgstr "" #. Tag: para #, no-c-format msgid "Hibernate supports dom4j as API for manipulating XML trees. You can write queries that retrieve dom4j trees from the database and have any modification you make to the tree automatically synchronized to the database. You can even take an XML document, parse it using dom4j, and write it to the database with any of Hibernate's basic operations: <literal>persist(), saveOrUpdate(), merge(), delete(), replicate() (merging is not yet supported)." msgstr "" #. Tag: para #, no-c-format msgid "This feature has many applications including data import/export, externalization of entity data via JMS or SOAP and XSLT-based reporting." msgstr "" #. Tag: para #, no-c-format msgid "A single mapping can be used to simultaneously map properties of a class and nodes of an XML document to the database, or, if there is no class to map, it can be used to map just the XML." msgstr "" #. Tag: title #, no-c-format msgid "Specifying XML and class mapping together" msgstr "" #. Tag: para #, no-c-format msgid "Here is an example of mapping a POJO and XML simultaneously:" msgstr "" #. Tag: title #, no-c-format msgid "Specifying only an XML mapping" msgstr "" #. Tag: para #, no-c-format msgid "Here is an example where there is no POJO class:" msgstr "" #. Tag: para #, no-c-format msgid "This mapping allows you to access the data as a dom4j tree, or as a graph of property name/value pairs or java <literal>Maps. The property names are purely logical constructs that can be referred to in HQL queries." msgstr "" #. Tag: title #, no-c-format msgid "XML mapping metadata" msgstr "" #. Tag: para #, no-c-format msgid "A range of Hibernate mapping elements accept the <literal>node attribute. This lets you specify the name of an XML attribute or element that holds the property or entity data. The format of the Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate xml.pot source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.