[jboss-cvs] JBossAS SVN: r103790 - projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Apr 12 01:52:17 EDT 2010
Author: laubai
Date: 2010-04-12 01:52:17 -0400 (Mon, 12 Apr 2010)
New Revision: 103790
Added:
projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.ent
projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.xml
Removed:
projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.ent
projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.xml
Modified:
projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Book_Info.xml
Log:
Updated version number for CP09.
Modified: projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Book_Info.xml
===================================================================
--- projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Book_Info.xml 2010-04-12 05:48:11 UTC (rev 103789)
+++ projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Book_Info.xml 2010-04-12 05:52:17 UTC (rev 103790)
@@ -3,8 +3,8 @@
]>
<bookinfo id="Hibernate_Reference_Guide">
- <title>Hibernate Reference Guide CP08</title>
- <subtitle>for Use with JBoss Enterprise Application Platform 4.2 Cumulative Patch 8</subtitle>
+ <title>Hibernate Reference Guide CP09</title>
+ <subtitle>for Use with JBoss Enterprise Application Platform 4.2 Cumulative Patch 9</subtitle>
<edition>1.0</edition>
<pubsnumber>1</pubsnumber>
<productname>JBoss Enterprise Application Platform</productname>
Deleted: projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.ent
===================================================================
--- projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.ent 2010-04-12 05:48:11 UTC (rev 103789)
+++ projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.ent 2010-04-12 05:52:17 UTC (rev 103790)
@@ -1,5 +0,0 @@
-<!ENTITY allproperties "&allproperties;">
-<!ENTITY types "&types;">
-<!ENTITY YEAR "2009">
-<!ENTITY HOLDER "Red Hat, Inc.">
-
Deleted: projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.xml
===================================================================
--- projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.xml 2010-04-12 05:48:11 UTC (rev 103789)
+++ projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.xml 2010-04-12 05:52:17 UTC (rev 103790)
@@ -1,89 +0,0 @@
-<?xml version='1.0'?>
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
-
-<book>
- <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <preface id="Preface" revision="2"><title>Preface</title>
- <para>
- Working with object-oriented software and a relational database can be cumbersome and time consuming in today's enterprise environments. Hibernate is an object/relational mapping tool for Java environments. The term object/relational mapping (ORM) refers to the technique of mapping a data representation from an object model to a relational data model with a SQL-based schema.
- </para>
- <para>
- Hibernate not only takes care of the mapping from Java classes to database tables (and from Java data types to SQL data types), but also provides data query and retrieval facilities and can significantly reduce development time otherwise spent with manual data handling in SQL and JDBC.
- </para>
- <para>
- Hibernates goal is to relieve the developer from 95 percent of common data persistence related programming tasks. Hibernate may not be the best solution for data-centric applications that only use stored-procedures to implement the business logic in the database, it is most useful with object-oriented domain models and business logic in the Java-based middle-tier. However, Hibernate can certainly help you to remove or encapsulate vendor-specific SQL code and will help with the common task of result set translation from a tabular representation to a graph of objects.
- </para>
- <para>
- If you are new to Hibernate and Object/Relational Mapping or even Java, please follow these steps:
- </para>
- <orderedlist>
- <listitem>
- <para>
- Read <xref linkend="Introduction_to_Hibernate" /> for a tutorial with step-by-step instructions. The source code for the tutorial is included in the distribution in the <literal>doc/reference/tutorial/</literal> directory.
- </para>
- </listitem>
- <listitem>
- <para>
- Read <xref linkend="Architecture" /> to understand the environments where Hibernate can be used.
- </para>
- </listitem>
- <listitem>
- <para>
- Have a look at the <literal>eg/</literal> directory in the Hibernate distribution, it contains a simple standalone application. Copy your JDBC driver to the <literal>lib/</literal> directory and edit <literal>etc/hibernate.properties</literal>, specifying correct values for your database. From a command prompt in the distribution directory, type <literal>ant eg</literal> (using Ant), or under Windows, type <literal>build eg</literal>.
- </para>
- </listitem>
- <listitem>
- <para>
- Use this reference documentation as your primary source of information. Consider reading <emphasis>Hibernate in Action</emphasis> (http://www.manning.com/bauer) if you need more help with application design or if you prefer a step-by-step tutorial. Also visit http://caveatemptor.hibernate.org and download the example application for Hibernate in Action.
- </para>
- </listitem>
- <listitem>
- <para>
- FAQs are answered on the Hibernate website.
- </para>
- </listitem>
- <listitem>
- <para>
- Third party demos, examples, and tutorials are linked on the Hibernate website.
- </para>
- </listitem>
- <listitem>
- <para>
- The Community Area on the Hibernate website is a good resource for design patterns and various integration solutions (Tomcat, JBoss AS, Struts, EJB, etc.).
- </para>
- </listitem>
- </orderedlist>
- <para>
- If you have questions, use the user forum linked on the Hibernate website. We also provide a JIRA issue trackings system for bug reports and feature requests. If you are interested in the development of Hibernate, join the developer mailing list. If you are interested in translating this documentation into your language, contact us on the developer mailing list.
- </para>
- <para>
- Commercial development support, production support, and training for Hibernate is available through JBoss Inc. (see http://www.hibernate.org/SupportTraining/). Hibernate is a Professional Open Source project and a critical component of the JBoss Enterprise Middleware System (JEMS) suite of products.
- </para>
- </preface><xi:include href="Introduction_To_Hibernate.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Persistent_Classes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Basic_O_R_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Collection_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Association_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Component_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Inheritance_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Working_With_Objects.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Transactions_And_Concurrency.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Interceptors_And_Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Batch_Processing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="The_Hibernate_Query_Language.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Criteria_Queries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Native_SQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Filtering_Data.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="XML_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Improving_Performance.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Toolset_Guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Example_Parent_Child.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Example_Weblog_Application.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Example_Various_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Best_Practices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
-<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
-
-</book>
-
Copied: projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.ent (from rev 103783, projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.ent)
===================================================================
--- projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.ent (rev 0)
+++ projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.ent 2010-04-12 05:52:17 UTC (rev 103790)
@@ -0,0 +1,5 @@
+<!ENTITY allproperties "&allproperties;">
+<!ENTITY types "&types;">
+<!ENTITY YEAR "2010">
+<!ENTITY HOLDER "Red Hat, Inc.">
+
Copied: projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.xml (from rev 103783, projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP08.xml)
===================================================================
--- projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.xml (rev 0)
+++ projects/docs/enterprise/4.2.9/Hibernate/Reference_Guide/en-US/Hibernate_Reference_Guide_CP09.xml 2010-04-12 05:52:17 UTC (rev 103790)
@@ -0,0 +1,89 @@
+<?xml version='1.0'?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
+
+<book>
+ <xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <preface id="Preface" revision="2"><title>Preface</title>
+ <para>
+ Working with object-oriented software and a relational database can be cumbersome and time consuming in today's enterprise environments. Hibernate is an object/relational mapping tool for Java environments. The term object/relational mapping (ORM) refers to the technique of mapping a data representation from an object model to a relational data model with a SQL-based schema.
+ </para>
+ <para>
+ Hibernate not only takes care of the mapping from Java classes to database tables (and from Java data types to SQL data types), but also provides data query and retrieval facilities and can significantly reduce development time otherwise spent with manual data handling in SQL and JDBC.
+ </para>
+ <para>
+ Hibernates goal is to relieve the developer from 95 percent of common data persistence related programming tasks. Hibernate may not be the best solution for data-centric applications that only use stored-procedures to implement the business logic in the database, it is most useful with object-oriented domain models and business logic in the Java-based middle-tier. However, Hibernate can certainly help you to remove or encapsulate vendor-specific SQL code and will help with the common task of result set translation from a tabular representation to a graph of objects.
+ </para>
+ <para>
+ If you are new to Hibernate and Object/Relational Mapping or even Java, please follow these steps:
+ </para>
+ <orderedlist>
+ <listitem>
+ <para>
+ Read <xref linkend="Introduction_to_Hibernate" /> for a tutorial with step-by-step instructions. The source code for the tutorial is included in the distribution in the <literal>doc/reference/tutorial/</literal> directory.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Read <xref linkend="Architecture" /> to understand the environments where Hibernate can be used.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Have a look at the <literal>eg/</literal> directory in the Hibernate distribution, it contains a simple standalone application. Copy your JDBC driver to the <literal>lib/</literal> directory and edit <literal>etc/hibernate.properties</literal>, specifying correct values for your database. From a command prompt in the distribution directory, type <literal>ant eg</literal> (using Ant), or under Windows, type <literal>build eg</literal>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Use this reference documentation as your primary source of information. Consider reading <emphasis>Hibernate in Action</emphasis> (http://www.manning.com/bauer) if you need more help with application design or if you prefer a step-by-step tutorial. Also visit http://caveatemptor.hibernate.org and download the example application for Hibernate in Action.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ FAQs are answered on the Hibernate website.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ Third party demos, examples, and tutorials are linked on the Hibernate website.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The Community Area on the Hibernate website is a good resource for design patterns and various integration solutions (Tomcat, JBoss AS, Struts, EJB, etc.).
+ </para>
+ </listitem>
+ </orderedlist>
+ <para>
+ If you have questions, use the user forum linked on the Hibernate website. We also provide a JIRA issue trackings system for bug reports and feature requests. If you are interested in the development of Hibernate, join the developer mailing list. If you are interested in translating this documentation into your language, contact us on the developer mailing list.
+ </para>
+ <para>
+ Commercial development support, production support, and training for Hibernate is available through JBoss Inc. (see http://www.hibernate.org/SupportTraining/). Hibernate is a Professional Open Source project and a critical component of the JBoss Enterprise Middleware System (JEMS) suite of products.
+ </para>
+ </preface><xi:include href="Introduction_To_Hibernate.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Architecture.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Configuration.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Persistent_Classes.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Basic_O_R_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Collection_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Association_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Component_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Inheritance_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Working_With_Objects.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Transactions_And_Concurrency.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Interceptors_And_Events.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Batch_Processing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="The_Hibernate_Query_Language.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Criteria_Queries.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Native_SQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Filtering_Data.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="XML_Mapping.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Improving_Performance.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Toolset_Guide.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Example_Parent_Child.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Example_Weblog_Application.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Example_Various_Mappings.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <xi:include href="Best_Practices.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="Revision_History.xml"/>
+
+</book>
+
More information about the jboss-cvs-commits
mailing list