michealAtmi
michealAtmi

Reputation: 1042

Hibernate downloads DTD from Internet, how to makie if offline?

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

Answers (1)

B_St
B_St

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

Related Questions