我尝试基于使用Hibernate内存数据库配置Spring Data :
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd"> <!-- Configure the data source bean --> <jdbc:embedded-database id="dataSource" type="HSQL"> </jdbc:embedded-database> <!-- Create default configuration for Hibernate --> <bean id="hibernateJpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> <property name="generateDdl" value="false"> </property> </bean> <!-- Configure the entity manager factory bean --> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="dataSource" ref="dataSource"/> <property name="jpaVendorAdapter" ref="hibernateJpaVendorAdapter"/> <property name="persistenceUnitName" value="punit"/> <property name="jpaPropertyMap"> <map> <entry key="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"></entry> <entry key="hibernate.hbm2ddl.auto" value="create"></entry> <entry key="hibernate.show_sql" value="true"></entry> </map> </property> <property name="packagesToScan" value="models"/> <property name="sharedCacheMode" value="ENABLE_SELECTIVE"/> <property name="validationMode" value="NONE"/> </bean> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="entityManagerFactory" ref="entityManagerFactory"/> </bean> <tx:annotation-driven/> <jpa:repositories base-package="beans.repositories"/>
但是我一遍又一遍地得到:
org.hibernate.cfg.Environment。HHH000206:找不到hibernate.properties
问题是我不想在properties文件中指定它,就像我以前没有Spring Data一样,我想在xml配置中设置它,就像我基于的答案一样。我想念什么吗?预先感谢您的帮助。
properties
xml
那行仅是来自Hibernate的信息消息。您可能还会收到与此类似的另一个抱怨hibernate.cfg.xml。
hibernate.cfg.xml
在启动时,可以使用这2个文件配置hibernate模式,而hibernate记录不存在的文件。一无所有 您可以简单地忽略它。