Hello I’m building spring-hibernate application. Do i realy need configuration from below ?
<property name="annotatedClasses">
<list>
<value>org.fixus.springer.model.User</value>
</list>
</property>
I’ve set annotation-driven in my root-context.xml
<mvc:annotation-driven />
<context:component-scan base-package="org.fixus.springer" />
<context:component-scan base-package="org.fixus.springer.model" />
Now shouldn’t hibernate automaticly take everything from this packages with annotation @Entity and convert it to table ? As for now without annotatedClasses he won’t create a table from a entity
Use the docs, Luke!
As you can see you have a choice between defining all classes explicitly or only the package for scanning.
<context:component-scan/>does not recognize Hibernate/JPA annotations and hence has no effect.