最近學習spring mvc,用到jpa簡化DAO層代碼,發現save死活不觸發SQL語句,找了很久才解決這個問題,實在是坑。、mysql
<!-- 關鍵是這個bean,必定要設置正確才行 --> <bean id="transactionManager">
二話不說了,直接貼配置文件:spring
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.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-4.0.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.0.xsd" > <context:annotation-config/> <context:component-scan base-package="edu.zipcloud.cloudstreetmarket.core" /> <jpa:repositories base-package="edu.zipcloud.cloudstreetmarket.core.daos" /> <bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close"> <property name="driverClassName"> <value>com.mysql.jdbc.Driver</value> </property> <property name="url"> <value>jdbc:mysql://localhost:3306/testdb</value> </property> <property name="username"> <value>root</value> </property> <property name="password"> <value>123456</value> </property> </bean> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> <property name="persistenceUnitName" value="jpaData"/> <property name="dataSource" ref="dataSource" /> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/> </property> <property name="jpaProperties"> <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> <!-- <prop key="hibernate.hbm2ddl.auto">create</prop> --> <!-- <prop key="hibernate.hbm2ddl.auto">create-drop</prop> --> <prop key="hibernate.hbm2ddl.auto">none</prop> <prop key="hibernate.default_schema">testdb</prop> </props> </property> </bean> <!-- 密碼編碼器,若是不加這個,spring不知道要用哪個 --> <bean id="passwordEncoder" class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder"/> <!-- 當容器啓動時,執行SQL --> <jdbc:initialize-database data-source="dataSource" enabled="false"> <jdbc:script location="classpath:/META-INF/db/init.sql"/> </jdbc:initialize-database> <!-- 事務 就是這裏有問題啦 --> <!-- Since you're using JPA, the transaction manager should be a JpaTransactionManager, not a DataSourceTransactionManager. --> <!-- <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> --> <!-- fuck off !!! --> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="dataSource" ref="dataSource"/> </bean> <tx:annotation-driven transaction-manager="transactionManager" proxy-target-class="true" /> </beans>
stackoverflow上找到了緣由,就是這個JPA,有一個專用的事務管理器,org.springframework.jdbc.datasource.DataSourceTransactionManager,若是用DataSourceTransactionManager就不行了。終於解決了,下次研究一下二者有什麼不一樣。sql
(未完待續…………)apache