Netra Matari

Greenhorn
+ Follow
since Dec 03, 2017
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Netra Matari

persistence.xml is for storing database details used behind hibernate. Mostly you have one persistence.xml file in your application which is common for all entities.

orm.xml is mostly used per entity. For employee entity, employee-orm.xml. For Manager entity, manager-orm.xml etc.

Note that i have used the term "mostly". Its bacuse you can have one orm file for all entirties but that is not a good practice.