码迷,mamicode.com
首页 > 其他好文 > 详细

annotatedClasses和component-scan冲突吗

时间:2015-07-08 00:11:35      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:

annotatedClasses:配置在sessionFactory下面表示的是,哪些实体需要映射,代码如下:

<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
		<property name="dataSource" ref="myDataSource" />
		<property name="annotatedClasses">
			<list>
				<value>com.jk.model.User</value>
				<value>com.jk.model.Shop</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.show_sql">true</prop>
				<prop key="hibernate.format_sql">true</prop>
				<prop key="hibernate.hbm2ddl.auto">update</prop>
			</props>
		</property>
	</bean>
  

  

2.component-scan表示的是扫描哪些包来装配进我们的spring中,以供后面的配置调用,一般要和

<context:annotation-config />一起使用,表示的是启用注解配置。

示例如下:

 <context:annotation-config />
 <context:component-scan base-package="com.jk" />

  

 

annotatedClasses和component-scan冲突吗

标签:

原文地址:http://www.cnblogs.com/toSeeMyDream/p/4628817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!