Reputation: 1042
Below mapping couses Hibernate to check the schema online. How to make this work offline?
< !DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.org/dtd/hibernate-mapping-3.0.dtd">
Upvotes: 1
Views: 135
Reputation: 190
You can use an DTDEntityResolver.
Here are some starters: https://forum.hibernate.org/viewtopic.php?t=927396
However it depends how you initialize your hibernate system and which version of hibernate you are using.
Hope this helps.
Upvotes: 1