Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spring-petclinic-microservices
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastien Briot
spring-petclinic-microservices
Commits
e93f0f60
Commit
e93f0f60
authored
12 years ago
by
Mic
Browse files
Options
Downloads
Patches
Plain Diff
removing xml OR mapping so we only use annotations
parent
3482d549
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/resources/META-INF/jpa-persistence.xml
+1
-10
1 addition, 10 deletions
src/main/resources/META-INF/jpa-persistence.xml
src/main/resources/META-INF/orm.xml
+0
-122
0 additions, 122 deletions
src/main/resources/META-INF/orm.xml
with
1 addition
and
132 deletions
src/main/resources/META-INF/jpa-persistence.xml
+
1
−
10
View file @
e93f0f60
...
...
@@ -3,14 +3,5 @@
xsi:schemaLocation=
"http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
version=
"1.0"
>
<persistence-unit
name=
"PetClinic"
transaction-type=
"RESOURCE_LOCAL"
>
<!-- Explicitly define mapping file path, else Hibernate won't find the default -->
<mapping-file>
META-INF/orm.xml
</mapping-file>
<!-- Prevent annotation scanning. In this app we are purely driven by orm.xml -->
<exclude-unlisted-classes>
true
</exclude-unlisted-classes>
</persistence-unit>
<persistence-unit
name=
"PetClinic"
transaction-type=
"RESOURCE_LOCAL"
/>
</persistence>
This diff is collapsed.
Click to expand it.
src/main/resources/META-INF/orm.xml
deleted
100644 → 0
+
0
−
122
View file @
3482d549
<?xml version="1.0" encoding="UTF-8"?>
<entity-mappings
xmlns=
"http://java.sun.com/xml/ns/persistence/orm"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_1_0.xsd"
version=
"1.0"
>
<persistence-unit-metadata>
<xml-mapping-metadata-complete/>
<persistence-unit-defaults>
<access>
PROPERTY
</access>
</persistence-unit-defaults>
</persistence-unit-metadata>
<package>
org.springframework.samples.petclinic
</package>
<mapped-superclass
class=
"BaseEntity"
>
<attributes>
<id
name=
"id"
>
<generated-value
strategy=
"IDENTITY"
/>
</id>
<transient
name=
"new"
/>
</attributes>
</mapped-superclass>
<mapped-superclass
class=
"NamedEntity"
>
<attributes>
<basic
name=
"name"
>
<column
name=
"NAME"
/>
</basic>
</attributes>
</mapped-superclass>
<mapped-superclass
class=
"Person"
>
<attributes>
<basic
name=
"firstName"
>
<column
name=
"FIRST_NAME"
/>
</basic>
<basic
name=
"lastName"
>
<column
name=
"LAST_NAME"
/>
</basic>
</attributes>
</mapped-superclass>
<entity
class=
"Vet"
>
<table
name=
"vets"
/>
<attributes>
<many-to-many
name=
"specialtiesInternal"
target-entity=
"Specialty"
fetch=
"EAGER"
>
<join-table
name=
"vet_specialties"
>
<join-column
name=
"VET_ID"
/>
<inverse-join-column
name=
"SPECIALTY_ID"
/>
</join-table>
</many-to-many>
<transient
name=
"specialties"
/>
<transient
name=
"nrOfSpecialties"
/>
</attributes>
</entity>
<entity
class=
"Specialty"
>
<table
name=
"specialties"
/>
</entity>
<entity
class=
"Owner"
>
<table
name=
"owners"
/>
<attributes>
<basic
name=
"address"
/>
<basic
name=
"city"
/>
<basic
name=
"telephone"
/>
<one-to-many
name=
"petsInternal"
target-entity=
"Pet"
mapped-by=
"owner"
fetch=
"EAGER"
>
<cascade>
<cascade-all/>
</cascade>
</one-to-many>
<transient
name=
"pets"
/>
</attributes>
</entity>
<entity
class=
"Pet"
>
<table
name=
"pets"
/>
<attributes>
<basic
name=
"birthDate"
>
<column
name=
"BIRTH_DATE"
/>
<temporal>
DATE
</temporal>
</basic>
<many-to-one
name=
"owner"
fetch=
"EAGER"
>
<cascade>
<cascade-all/>
</cascade>
</many-to-one>
<many-to-one
name=
"type"
fetch=
"EAGER"
>
<cascade>
<cascade-all/>
</cascade>
</many-to-one>
<one-to-many
name=
"visitsInternal"
target-entity=
"Visit"
mapped-by=
"pet"
fetch=
"EAGER"
>
<cascade>
<cascade-all/>
</cascade>
</one-to-many>
<transient
name=
"visits"
/>
</attributes>
</entity>
<entity
class=
"PetType"
>
<table
name=
"types"
/>
</entity>
<entity
class=
"Visit"
>
<table
name=
"visits"
/>
<attributes>
<basic
name=
"date"
>
<column
name=
"VISIT_DATE"
/>
<temporal>
DATE
</temporal>
</basic>
<many-to-one
name=
"pet"
fetch=
"EAGER"
>
<cascade>
<cascade-all/>
</cascade>
</many-to-one>
</attributes>
</entity>
</entity-mappings>
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