Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GoikLectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goik Martin
GoikLectures
Commits
69ce3858
Commit
69ce3858
authored
9 years ago
by
Goik Martin
Browse files
Options
Downloads
Patches
Plain Diff
Providing a complete persistence.xml rather than just a fragment.
Providing additional Maven dependencies
parent
325fc88b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/Persist/topics.xml
+92
-38
92 additions, 38 deletions
Doc/Persist/topics.xml
with
92 additions
and
38 deletions
Doc/Persist/topics.xml
+
92
−
38
View file @
69ce3858
...
@@ -103,35 +103,6 @@
...
@@ -103,35 +103,6 @@
<quote>
Airline
</quote>
.
</para>
<quote>
Airline
</quote>
.
</para>
</listitem>
</listitem>
<listitem>
<para><link
xlink:href=
"http://techbus.safaribooksonline.com/book/programming/java/9781617290459/part-1dot-getting-started-with-orm/kindle_split_013_html"
>
Chapter
2
</link>
of
<xref
linkend=
"bib_Bauer15"
/>
provides hints
starting a project. Rather than using the described more
elaborate
<xref
linkend=
"glo_JTA"
/>
based setup you may just
want to follow a simpler
<xref
linkend=
"glo_JDBC"
/>
based
approach when defining a persistence unit in your project's
<filename>
src/main/resources/META-INF/persistence.xml
</filename>
file:
</para>
<programlisting
language=
"xml"
>
<
persistence...
>
<
persistence-unit name="AirlinePU"
>
...
<
class
>
de.hdm_stuttgart.mi.persist.airline.model.Airline
<
/class
>
<
properties
>
<
!-- JDBC database connection parameter (MI local MySQL installation) --
>
<
property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/
>
<
property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/hdm"/
>
<
property name="javax.persistence.jdbc.user" value="hdmuser"/
>
<
property name="javax.persistence.jdbc.password" value="XYZ"/
>
...
<
/properties
>
<
/persistence-unit
>
...
<
/persistence
>
</programlisting>
</listitem>
<listitem>
<listitem>
<para>
Create an
<classname>
Airline
</classname>
<classname
<para>
Create an
<classname>
Airline
</classname>
<classname
xlink:href=
"http://docs.oracle.com/javaee/7/api/javax/persistence/Entity.html"
>
@Entity
</classname>
xlink:href=
"http://docs.oracle.com/javaee/7/api/javax/persistence/Entity.html"
>
@Entity
</classname>
...
@@ -158,10 +129,93 @@ public class Airline {
...
@@ -158,10 +129,93 @@ public class Airline {
protected Airline(){}
protected Airline(){}
}
</programlisting>
}
</programlisting>
<para>
The three imports require additional libraries to be
present. Using Maven this may be achieved by adding the
following dependency to your project's
<filename>
pom.xml
</filename>
file:
</para>
<programlisting
language=
"xml"
>
<
dependency
>
<
groupId
>
org.hibernate
<
/groupId
>
<
artifactId
>
hibernate-entitymanager
<
/artifactId
>
<
version
>
5.1.0.Final
<
/version
>
<
/dependency
>
</programlisting>
<para>
Why do we need
<code>
protected Airline(){}
</code>
<para>
Why do we need
<code>
protected Airline(){}
</code>
?
</para>
?
</para>
</listitem>
</listitem>
<listitem>
<para><link
xlink:href=
"http://techbus.safaribooksonline.com/book/programming/java/9781617290459/part-1dot-getting-started-with-orm/kindle_split_013_html"
>
Chapter
2
</link>
of
<xref
linkend=
"bib_Bauer15"
/>
provides hints
starting a project. Rather than using the described more
elaborate
<xref
linkend=
"glo_JTA"
/>
based setup you may just
want to follow a simpler
<xref
linkend=
"glo_JDBC"
/>
based
approach when defining a persistence unit in your project's
<filename>
src/main/resources/META-INF/persistence.xml
</filename>
file:
</para>
<programlisting
language=
"xml"
>
<
persistence
version="2.1"
xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://www.oracle.com/webfolder/technetwork/jsc/xml/ns/persistence/persistence_2_1.xsd"
>
<
!--
The
<
code
>
persistence.xml
<
/code
>
file configures at least one persistence unit;
each unit must have a unique name.
--
>
<
persistence-unit name="AirlinePU"
>
<
!-- A persistent unit has persistent (mapped) classes, you list them here. --
>
<
class
>
de.hdm_stuttgart.mi.persist.airline.model.Airline
<
/class
>
<
!-- Hibernate can scan your classpath for mapped classes and add them automatically
to your persistence unit. This setting disables that feature. --
>
<
exclude-unlisted-classes
>
true
<
/exclude-unlisted-classes
>
<
!-- Standard or vendor-specific options can be set as properties on a persistence unit.
Any standard properties have the
<
code
>
javax.persistence
<
/code
>
name prefix, Hibernate's
settings use
<
code
>
hibernate
<
/code
>
--
>
<
properties
>
<
!-- JDBC database connection parameter --
>
<
property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/
>
<
property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/hdm"/
>
<
property name="javax.persistence.jdbc.user" value="hdmuser"/
>
<
property name="javax.persistence.jdbc.password" value="XYZ"/
>
<
!-- The JPA engine should drop and re-create the SQL schema in the database
automatically when it boots. This is ideal for automated testing, when
you want to work with a clean database for every test run. --
>
<
property
name="javax.persistence.schema-generation.database.action"
value="drop-and-create"/
>
<
!-- When printing SQL in logs, let Hibernate format the SQL nicely and generate
comments into the SQL string so we know why Hibernate executed the SQL statement. --
>
<
property name="hibernate.format_sql" value="true"/
>
<
property name="hibernate.use_sql_comments" value="true"/
>
<
!-- Disable Hibernate scanning completely, we also don't want any hbm.xml files
discovered and added automatically. --
>
<
property name="hibernate.archive.autodetection" value="none"/
>
<
/properties
>
<
/persistence-unit
>
<
/persistence
>
</programlisting>
<para>
Our persistence unit connecting to a
<xref
linkend=
"glo_Soft_Mysql"
/>
database server requires another
Maven dependency:
</para>
<programlisting
language=
"xml"
>
<
dependency
>
<
groupId
>
mysql
<
/groupId
>
<
artifactId
>
mysql-connector-java
<
/artifactId
>
<
version
>
5.1.38
<
/version
>
<
/dependency
>
</programlisting>
</listitem>
<listitem>
<listitem>
<para>
Our
<methodname>
main()
</methodname>
class will just
<para>
Our
<methodname>
main()
</methodname>
class will just
write a single
<classname>
Airline
</classname>
instance to
write a single
<classname>
Airline
</classname>
instance to
...
@@ -250,9 +304,9 @@ mysql> show create table hibernate_sequence;
...
@@ -250,9 +304,9 @@ mysql> show create table hibernate_sequence;
)
</programlisting>
)
</programlisting>
<para>
On object creation the
<xref
linkend=
"glo_JPA"
/>
provider
<para>
On object creation the
<xref
linkend=
"glo_JPA"
/>
provider
will use
<code>
hibernate_sequence
</code>
t
o generat
e
will use
the additional
<code>
hibernate_sequence
</code>
t
abl
e
<code>
id
</code>
values. Thus
the
<xref
for generating
<code>
id
</code>
values. Thus
<xref
linkend=
"glo_Soft_Mysql"
/>
<link
linkend=
"glo_Soft_Mysql"
/>
's
<link
xlink:href=
"http://dev.mysql.com/doc/refman/5.7/en/example-auto-increment.html"
>
AUTO_INCREMENT
</link>
xlink:href=
"http://dev.mysql.com/doc/refman/5.7/en/example-auto-increment.html"
>
AUTO_INCREMENT
</link>
feature is not yet being used.
</para>
feature is not yet being used.
</para>
</answer>
</answer>
...
@@ -269,8 +323,8 @@ mysql> show create table hibernate_sequence;
...
@@ -269,8 +323,8 @@ mysql> show create table hibernate_sequence;
<qandadiv>
<qandadiv>
<qandaentry>
<qandaentry>
<question>
<question>
<para>
Modify the current
class
<classname>
Airline
</classname>
<para>
Modify the current
<classname>
Airline
</classname>
to: like
:
</para>
class
:
</para>
<orderedlist>
<orderedlist>
<listitem>
<listitem>
...
@@ -445,12 +499,12 @@ public class Airline {
...
@@ -445,12 +499,12 @@ public class Airline {
<listitem>
<listitem>
<para>
Stable approach with respect to
<xref
<para>
Stable approach with respect to
<xref
linkend=
"glo_Java"
/>
code refactoring: If e.g. the
linkend=
"glo_Java"
/>
code refactoring: If e.g. the
property
<property>
icaoCode
</property>
gets
<property>
icaoCode
</property>
property
gets
consistently renamed to
consistently renamed to
<property>
icaoCode
</property>
Number
<xref
<property>
icaoCode
</property>
Number
<xref
linkend=
"glo_SqlDdl"
/>
code will still be
properly
linkend=
"glo_SqlDdl"
/>
code will still be
generated
generated
. However
this problem
may
be
overcome
for
properly
. However
our complex solution
may overcome
our complex solution
by providing stable
<xref
this problem
by providing stable
<xref
linkend=
"glo_SqlDdl"
/>
attribute names via
linkend=
"glo_SqlDdl"
/>
attribute names via
<code>
@Column(name="icaoCode" ...)
</code>
thereby
<code>
@Column(name="icaoCode" ...)
</code>
thereby
protecting the database from unnecessary schema
protecting the database from unnecessary schema
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment