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

Java 数据在数据库jpa/hibernate中插入两次,java,spring,hibernate,jpa,Java,Spring,Hibernate,Jpa,无法找到使用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"

无法找到使用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>
JPA存储库是:

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

import com.project.entity.User;

public interface UserRepository extends JpaRepository<User, Integer> {

}
上述代码无错误/异常;还创建了数据库/表,但在mySQL数据库中看到实体/表时,数据被插入实体/表两次。 项目正在进行中

控制台输出为:

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

既然我看到您正在使用SpringMVC,那就在这里碰碰运气吧

使用SpringMVC,您有一个定义控制器的servlet上下文,还有一个用于其他bean的applicationContext。这可能是因为您正在扫描servlet上下文中控制器以外的bean,这反过来将为您提供两个
InitDbService
bean,它们都运行@PostConstruct方法,插入到数据库中

这可以通过如下定义组件扫描来解决:

servlet上下文(仅在单独的包中放置控制器和控制器之后):


应用程序上下文:

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

您必须启用调试日志记录,以检查初始化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:component-scan base-package="com.project.db" />


我已经测试了您的项目,它在这个更改中工作得很好。

可能是因为您有两个Spring上下文,都包含一个
InitDbService
bean,然后每个bean插入一次吗?在Spring MVC中,通常有一个servlet上下文,它为控制器创建bean,还有一个applicationContext,它创建每个不是控制器的bean。请看,我已经粘贴了根上下文和servlet上下文,您可以相应地更新您的答案吗???从我可以告诉您的servlet上下文扫描不仅仅限于控制器,这意味着applicationContext和servlet上下文都将扫描并创建InitDbService的bean。如上所述,使用include过滤器确保servlet上下文仅为控制器创建bean。我已根据您的建议进行了更改,但仍然发生了两次相同的问题插入。不知道为什么?但是我将控制器放在单独的包中,然后是WebAppInit.class,并根据您的建议进行了更改,哇,它工作得很好。我认为include过滤器的工作方式与我当时预期的不同。。带有单独软件包的设置是我工作中使用的,可能有人认为include筛选器不是这样工作的..我已经按照建议进行了更改,数据插入看起来很好,但现在我看到HTTP状态404-页面未找到,警告说
WARN:org.springframework.web.servlet.PageNotFound-在名为“springDispatcher”的DispatcherServlet中找不到URI为[/db/]的HTTP请求的映射。根据我的编辑进行更改后,它工作正常!
<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>
<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>
<context:component-scan base-package="com.project.db" />