Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sebersole/942855 to your computer and use it in GitHub Desktop.
Save sebersole/942855 to your computer and use it in GitHub Desktop.
HibernateMetadata.java
MetadataSources sources = new MetadataSources(...)
...
.addAnnotatedClasses( Item.class );
.buildMetadata();
MetadataSources sources = new MetadataSources(...)
...
.addAnnotatedClasses( Item.class );
.usingContext()
.setNamingStrategy( new MyNamingStrategy() )
.buildMetadata();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment