|
Hibernate example source code file (xml.po)
The Hibernate xml.po source code# translation of xml.po to # translation of Collection_Mapping.po to # translation of Collection_Mapping.po to # translation of Collection_Mapping.po to # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2006. # , 2007. # , 2007. # , 2007. # , 2007. # , 2007. # , 2007. # , 2007. # , 2007. # , 2007. # Michael H. Smith <mhideo@redhat.com>, 2007. # Glaucia Cintra <gcintra@redhat.com>, 2007. msgid "" msgstr "" "Project-Id-Version: xml\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" "POT-Creation-Date: 2010-02-10T07:25:35\n" "PO-Revision-Date: 2010-03-19 14:09+1000\n" "Last-Translator: \n" "Language-Team: <en@li.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Tag: title #, no-c-format msgid "XML Mapping" msgstr "Mapeamento XML" #. Tag: para #, no-c-format msgid "" "<emphasis> XML Mapping is an experimental feature in Hibernate 3.0 and is " "currently under active development. </emphasis>" msgstr "" "<emphasis> O Mapeamento XML é um recurso experimental no Hibernate 3.0 e " "está sob constante desenvolvimento. </emphasis> " #. Tag: title #, no-c-format msgid "Working with XML data" msgstr "Trabalhando com dados em XML" #. 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 "" "O Hibernate permite que se trabalhe com dados persistentes em XML quase da " "mesma maneira como você trabalha com POJOs persistentes. Uma árvore XML " "analisada, pode ser considerada como apenas uma maneira de representar os " "dados relacionais como objetos, ao invés dos POJOs. " #. 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()</literal> (merging is not " "yet supported)." msgstr "" "O Hibernate suporta a API dom4j para manipular árvores XML. Você pode " "escrever queries que retornem árvores dom4j do banco de dados e " "automaticamente sincronizar com o banco de dados qualquer modificação feita " "nessas árvores. Você pode até mesmo pegar um documento XML, analisá-lo " "usando o dom4j, e escrever as alterações no banco de dados usando quaisquer " "operações básicas do Hibernate: <literal>persist(), saveOrUpdate(),merge(), " "delete(), replicate()</literal> (a mesclagem ainda não é suportada)" #. 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 "" "Essa funcionalidade tem várias aplicações incluindo importação/exportação de " "dados, externalização de dados de entidade via JMS or SOAP e relatórios " "usando XSLT." #. 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 "" "Um mapeamento simples pode ser usado para simultaneamente mapear " "propriedades da classe e nós de um documento XML para um banco de dados ou, " "se não houver classe para mapear, pode ser usado simplesmente para mapear o " "XML. " #. Tag: title #, no-c-format msgid "Specifying XML and class mapping together" msgstr "Especificando o mapeamento de uma classe e de um arquivo XML simultaneamente " #. Tag: para #, no-c-format msgid "Here is an example of mapping a POJO and XML simultaneously:" msgstr "Segue um exemplo de como mapear um POJO e um XML ao mesmo tempo:" #. Tag: title #, no-c-format msgid "Specifying only an XML mapping" msgstr "Especificando somente um mapeamento XML" #. Tag: para #, no-c-format msgid "Here is an example where there is no POJO class:" msgstr "Segue um exemplo que não contém uma classe POJO:" #. 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 "" "Esse mapeamento permite que você acesse os dados como uma árvore dom4j ou um " "gráfico de pares de nome/valor de propriedade ou <literal>Maps do " "Java. Os nomes de propriedades são somente construções lógicas que podem ser " "referenciadas em consultas HQL. " #. Tag: title #, no-c-format msgid "XML mapping metadata" msgstr "Mapeando metadados com XML" #. 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 <literal>node" "literal> attribute must be one of the following:" msgstr "" "Muitos elementos do mapeamento do Hibernate aceitam a função <literal>node" "literal>. Através dele, você pode especificar o nome de uma função ou " "elemento XML que contenha a propriedade ou os dados da entidade. O formato " "da função <literal>node deve ser o seguinte: " #. Tag: para #, no-c-format msgid "<literal>\"element-name\": map to the named XML element" msgstr "<literal>\"element-name\": mapeia para o elemento XML nomeado" #. Tag: para #, no-c-format msgid "<literal>\"@attribute-name\": map to the named XML attribute" msgstr "" "<literal>\"@attribute-name\": mapeia para a função XML com " "determinado nome" #. Tag: para #, no-c-format msgid "<literal>\".\": map to the parent element" msgstr "<literal>\".\": mapeia para o elemento pai" #. Tag: para #, no-c-format msgid "" "<literal>\"element-name/@attribute-name\": map to the named " "attribute of the named element" msgstr "" "<literal>\"element-name/@attribute-name\": mapeia para a função " "nomeada com o elemento nomeado" #. Tag: para #, no-c-format msgid "" "For collections and single valued associations, there is an additional " "<literal>embed-xml attribute. If Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate xml.po 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.