springmvc,spring,hibernate整合-使用packagesToScan扫描实体

在之前的例子中,扫描并识别hibernate实体时使用的的是org.springframework.orm.hibernate4.LocalSessionFactoryBean类中的annotatedClasses属性,如下:

<!-- 配置SessionFactory -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${hibernate.dialect}</prop>
				<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
				<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
				<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
			</props>
		</property>
		<!-- 注解扫描的包 -->
		<property name="annotatedClasses">
			<list>
				<value>com.jason.sshIntegration.entity.User</value>
			</list>
		</property>
	</bean>

这种方式需要一个一个的指定实体类,每增加一个实体类都需要修改一次配置文件,非常麻烦。

所以spring提供了另外一个属性叫packagesToScan来指定实体所在的包,这个属性可以扫描指定包下的所有实体,只要该实体类有@Entity注解,使用方法如下:

<!-- 配置SessionFactory -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">${hibernate.dialect}</prop>
				<prop key="hibernate.hbm2ddl.auto">${hibernate.hbm2ddl.auto}</prop>
				<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
				<prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
			</props>
		</property>
		<!-- 注解扫描的包 -->
		<property name="packagesToScan">
			<list>
				<value>com.jason.sshIntegration.entity</value>
			</list>
		</property>
	</bean>

使用这个属性有一个需要注意的地方就是如果某个包下没有子包则使用完整的包名,但如果某个包下有子包并且子包下的实体也需要被扫描则需要在完整的包名后加上.*,比如上面这个例子在entity包下有两个子包分别叫test和xxx都有需要被扫描的实体,则需要如下配置:

<property name="packagesToScan">
			<list>
			        <value>com.jason.sshIntegration.entity</value>
				<value>com.jason.sshIntegration.entity.*</value>
			</list>
		</property>

注意这边还是要明确指定com.jason.sshIntegration.entity这个包的包名,因为这包下也有实体需要扫描,如果不这样做则直接放在entity目录下的实体不会被扫描!

备注:

本例子中涉及到的代码都可以在我的github地址下载:https://github.com/zjordon/ssh-integration

你可能感兴趣的:(spring,Hibernate,springMVC,packagesToScan)