Here are some properties from my persistence.xml:
Code:
<properties>
<property
name="foo.bar.MyClass"
value="read-write" />
<!-- 2nd level cache -->
<property name="hibernate.cache.provider_class"
value="net.sf.ehcache.hibernate.SingletonEhCacheProvider" />
<property name="hibernate.cache.use_second_level_cache"
value="true" />
<property name="hibernate.generate_statistics" value="true" />
<property name="hibernate.cache.use_structured_entries"
value="true" />
<property name="hibernate.hbm2ddl.auto" value="create-drop" />
<property name="hibernate.show_sql" value="false" />
<property name="hibernate.format_sql" value="false" />
</properties>
You find more information here:
http://www.hibernate.org/hib_docs/entitymanager/reference/en/html/configuration.html
I hope this helps :)