我是Spring和Hibernate的新手。在浏览项目时,我在hibernate和spring xml配置文件中找到了连接url,用户名,密码等数据库详细信息。 我需要理解为什么这样做?
答案 0 :(得分:1)
是。如果您同时使用Hibernate和Spring,那么您也可以尝试这样做。 你需要hibernate的 hibernate.cfg.xml 和spring的 ApplicationContext.xml 。
这样做,首先创建你的hibernate.cfg.xml。 即
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/country</property>
<property name="connection.username">root</property>
<property name="connection.password">password</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="show_sql">false</property>
<property name="hibernate.current_session_context_class">thread</property>
<mapping class="com.hibernate.test" />
</session-factory>
</hibernate-configuration>
现在创建ApplictionContext.xml,并在sessionFactory bean中添加hibernate.cfg.xml作为属性。 即
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
//package to scan for Annotated classes
<context:component-scan base-package="com.hibernate.spring" />
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
//add and locate the hibernate.cfg.xml here
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
</beans>
通过这个你只需要调用Application.xml,hibernate.cfg.xml就会自动加载。
答案 1 :(得分:0)
您有两种选择。
您可以使用hibernate来管理数据库连接,也可以让Spring管理您的连接。
当你有Hibernate管理你的连接时,你只需要告诉Spring hibernate配置在哪里。对不起,我很难找到一个Hibernate管理连接的例子,Spring只是“使用”hibernate。
另一个选择是使用Spring来管理你的连接和hbm文件/带注释的实体。
以下是Spring docs的片段
<beans>
<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="org.hsqldb.jdbcDriver"/>
<property name="url" value="jdbc:hsqldb:hsql://localhost:9001"/>
<property name="username" value="sa"/>
<property name="password" value=""/>
</bean>
<bean id="mySessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="myDataSource"/>
<property name="mappingResources">
<list>
<value>product.hbm.xml</value>
</list>
</property>
<property name="hibernateProperties">
<value>
hibernate.dialect=org.hibernate.dialect.HSQLDialect
</value>
</property>
</bean>
</beans>
这里是完整的文档
http://docs.spring.io/spring/docs/4.0.5.RELEASE/spring-framework-reference/htmlsingle/#orm-hibernate
除了非常具体的问题,我在使用任何一种方式时都没有太多的区别,但我更愿意让Spring管理我的数据库连接,我可以让Spring处理事务,例如将所有内容集中在相同的配置中文件。