Joined: Mon Dec 12, 2005 8:57 am Posts: 13
|
Hi,
I've implemented my own NamingStrategy class but I'm not sure how can I apply it? My current conf (using Spring/JPA) is something like:
<bean class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> ..... </bean> </property> <property name="jpaPropertyMap"> <map> <entry key="hibernate.hbm2ddl.auto" value="update" /> .... </map> </property> </bean>
Any ideas? A new property or may be an annotation?
Regards
|
|