hibernate.cfg.xml能否引用属性文件 10
spring中可以引用属性文件,但不知道hibernate.cfg.xml中能否也能使用,那样我的spring中的具体数据源配置拿到hibernate.cfg.xml中,...
spring中可以引用属性文件,但不知道hibernate.cfg.xml中能否也能使用,那样我的spring中的具体数据源配置拿到hibernate.cfg.xml中,spring就专注于各种bean
我的属性文件是jdbc.properties,里面有各种数据库的连接,缓存处理机制和连接池设置,便于后来复用。 展开
我的属性文件是jdbc.properties,里面有各种数据库的连接,缓存处理机制和连接池设置,便于后来复用。 展开
3个回答
展开全部
可以 就算没这两个文件也没什么问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以将数据源包括属性都配置在hibernate.cfg.xml中 然后再spring的applicationContext.xml中配置一个bean
如果你用的是hibernate annotation注解的话就用下面的这个配置
<!-- 会话工厂配置 -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
用xml配置的话就用:
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
如果你用的是hibernate annotation注解的话就用下面的这个配置
<!-- 会话工厂配置 -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
用xml配置的话就用:
<bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询