数据在数据库 jpa/hibernate 中插入两次

Posted

技术标签:

【中文标题】数据在数据库 jpa/hibernate 中插入两次【英文标题】:Data is inserted twice in database jpa/hibernate 【发布时间】:2015-09-02 14:47:11 【问题描述】:

找不到使用 Spring 数据、JPA、hibernate 和 mysql 在 mySQL 数据库中插入数据的问题。它在数据库中插入数据两次。

root-context.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"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.0.xsd
        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.8.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">

    <!-- Root Context: defines shared resources visible to all other web components -->
    <context:component-scan base-package="com.project.db">
        <context:exclude-filter type="annotation"
            expression="org.springframework.stereotype.Controller" />
    </context:component-scan>

    <jdbc:embedded-database type="HSQL" id="dataSource"/>

    <!-- <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost/jpa"/>
        <property name="username" value="root"/>
        <property name="password" value=""/>
    </bean> -->

  <!--   <bean id="jpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
        <property name="showSql" value="true"/>
        <property name="generateDdl" value="true"/>
        <property name="database" value="MYSQL"/>
    </bean> -->

    <bean class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" 
        id="entityManagerFactory">      
        <property name="packagesToScan" value="com.project.db.entity"></property>
        <property name="dataSource" ref="dataSource"></property>
         <!--  <property name="jpaVendorAdapter" ref="jpaVendorAdapter"/> -->
        <property name="jpaProperties">
            <props>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.hbm2ddl.auto">create</prop>
            </props>
        </property>
        <property name="persistenceProvider">
            <bean class="org.hibernate.jpa.HibernatePersistenceProvider"/>
        </property>
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager"/>

    <bean class="org.springframework.orm.jpa.JpaTransactionManager"
        id="transactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>

    <jpa:repositories base-package="com.project.db.repository"/>
</beans>

servlet-context.xml 文件为:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the $webappRoot/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>

    <context:component-scan base-package="com.project.db" />    

</beans:beans>

我的@Entity 类是:

@Entity
public class User 

    @Id
    @GeneratedValue
    private Integer id ;

    private String name ;

    public Integer getId() 
        return id;
    

    public void setId(Integer id) 
        this.id = id;
    

    public String getName() 
        return name;
    

    public void setName(String name) 
        this.name = name;
    


JPA 存储库是:

import org.springframework.data.jpa.repository.JpaRepository;

import com.project.entity.User;

public interface UserRepository extends JpaRepository<User, Integer> 


最后,@Service 类是:

import javax.annotation.PostConstruct;
import javax.transaction.Transactional;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.project.entity.User;
import com.project.repository.UserRepository;

@Transactional
@Service
public class InitDbService 

    @Autowired
    private UserRepository  userRepository;

    @PostConstruct
    public void init() 
        User user = new User();
        user.setName("Ali");
        userRepository.save(user);
    

上面的代码没有错误/异常;还创建了数据库/表,但是当我在 mySQL 数据库中看到数据时,数据被插入到实体/表中两次。 项目位于github。

控制台输出是:

INFO: Spring WebApplicationInitializers detected on classpath: [com.project.db.WebAppInitializer@1867584]
Sep 2, 2015 12:50:17 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring root WebApplicationContext
INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization started
INFO : org.springframework.web.context.support.XmlWebApplicationContext - Refreshing Root WebApplicationContext: startup date [Wed Sep 02 12:50:17 PKT 2015]; root of context hierarchy
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/root-context.xml]
INFO : org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
Hibernate: drop table if exists users
Hibernate: create table users (id integer not null auto_increment, name varchar(255), primary key (id))
Hibernate: insert into users (name) values (?) // first time inserting here and
INFO : org.springframework.web.context.ContextLoader - Root WebApplicationContext: initialization completed in 5633 ms
Sep 2, 2015 12:50:23 PM org.apache.catalina.core.ApplicationContext log
INFO: Initializing Spring FrameworkServlet 'springDispatcher'
INFO : org.springframework.web.servlet.DispatcherServlet - FrameworkServlet 'springDispatcher': initialization started
INFO : org.springframework.web.context.support.XmlWebApplicationContext - Refreshing WebApplicationContext for namespace 'springDispatcher-servlet': startup date [Wed Sep 02 12:50:23 PKT 2015]; parent: Root WebApplicationContext
INFO : org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loading XML bean definitions from ServletContext resource [/WEB-INF/spring/appServlet/servlet-context.xml]
INFO : org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor - JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
INFO : org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping - Mapped "[/],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]" onto public java.lang.String com.project.db.HomeController.home(java.util.Locale,org.springframework.ui.Model)
INFO : org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter - Looking for @ControllerAdvice: WebApplicationContext for namespace 'springDispatcher-servlet': startup date [Wed Sep 02 12:50:23 PKT 2015]; parent: Root WebApplicationContext
INFO : org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter - Looking for @ControllerAdvice: WebApplicationContext for namespace 'springDispatcher-servlet': startup date [Wed Sep 02 12:50:23 PKT 2015]; parent: Root WebApplicationContext
INFO : org.springframework.web.servlet.handler.SimpleUrlHandlerMapping - Mapped URL path [/resources/**] onto handler 'org.springframework.web.servlet.resource.ResourceHttpRequestHandler#0'
Hibernate: insert into users (name) values (?) // Second time inserting here 
INFO : org.springframework.web.servlet.DispatcherServlet - FrameworkServlet 'springDispatcher': initialization completed in 1483 ms
Sep 2, 2015 12:50:25 PM org.apache.catalina.core.StandardContext reload
INFO: Reloading Context with name [/db] is completed

【问题讨论】:

会不会是你有两个 Spring 上下文,都包含一个 InitDbService bean,然后每个都插入一次?使用 Spring MVC,通常有一个 servlet-context,它为控制器创建 bean,以及一个 applicationContext,它创建每个不是控制器的 bean。 【参考方案1】:

由于我看到您正在使用 Spring MVC,因此在这里尝试一下。

使用 Spring MVC,您有一个定义控制器的 servlet-context,以及一个用于其他 bean 的 applicationContext。可能是您正在扫描 servlet-context 中的控制器以外的 bean,这反过来会给您两个 InitDbService 的 bean,它们都运行它们的 @PostConstruct 方法,插入到数据库中。

这可以通过像这样定义组件扫描来解决:

servlet-context(将控制器和控制器放在单独的包中之后):

<context:component-scan base-package="com.my.project.controller" />

应用上下文:

<context:component-scan base-package="com.my.project">
    <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

【讨论】:

看到我已经粘贴了 root-context 和 servlet-context 你能相应地更新你的答案吗??? 据我所知,您的 servlet-context 扫描不仅限于控制器,这意味着您的 applicationContext 和您的 servlet-context 都将扫描并为 InitDbService 创建一个 bean。使用上面概述的包含过滤器来确保您的 servlet-context 只为您的控制器创建 bean。 我已根据您的建议进行了更改,但仍然发生两次相同的问题插入。 不知道为什么?但是我将控制器放在单独的包中,然后是 WebAppInit.class 并根据您的建议进行了更改,并且效果很好。 我不认为包含过滤器按我预期的方式工作。我的工作中使用的是带有单独包的设置,有人可能认为包含过滤器没有不能这样工作..【参考方案2】:

您必须启用调试日志记录以检查您的初始化 bean 没有被创建两次,正如 Tobb 之前提到的,您的 bean 可能是在两个上下文中创建的。日志清楚地表明,第一次插入是在根上下文初始化期间执行的(witch 是正确的),第二次是在 servlet 上下文初始化期间执行的(这是错误的)

我找到了解决您问题的方法:您必须在根上下文中添加不带默认过滤器的组件扫描

<context:component-scan base-package="com.project.db" use-default-filters="false">
    <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
</context:component-scan>

和 servlet-context 是

<context:component-scan base-package="com.project.db" />

我已经测试了您的项目,并且它在此更改下运行良好。

【讨论】:

我已按照建议进行了更改,插入数据看起来不错,但现在我看到 HTTP 状态 404 - 找不到页面 并带有警告说 WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/db/] in DispatcherServlet with name 'springDispatcher' 根据我的编辑进行更改后,它工作正常!

以上是关于数据在数据库 jpa/hibernate 中插入两次的主要内容,如果未能解决你的问题,请参考以下文章

使用 Spring JPA / Hibernate 进行条件插入

JPA/Hibernate:如何为 @ManyToOne 插入默认值,其中值表示空条目

JPA Hibernate jpa spring data jpa

ORM 解决方案(JPA;Hibernate)与 JDBC

JPA/Hibernate 批量(批量)插入

如何使用 JPA/Hibernate 在孩子的 id 中引用父母的 id?