2013-07-14 45 views
0

我试图在我的数据库中保存一些对象,但entityManager.prestis()不起作用。 我使用Spring MVC和@Transactional注释。使用JPA的应用程序不保存到数据库

我一直在寻找sollution,但他们大多表示补充:

<tx:annotation-driven /> 

它doesnt't解决我的问题,所以我的代码,也许有人可以帮助我。

CategoryDaoImpl.class
@Repository("categoryDao") 
public class CategoryDaoImpl implements CategoryDao { 

    private static final Logger logger = LoggerFactory.getLogger(CategoryDaoImpl.class); 

    private EntityManager entityManager; 

    public EntityManager getEntityManager() { 
     return entityManager; 
    } 

    @PersistenceContext 
    public void setEntityManager(EntityManager entityManager) { 
     this.entityManager = entityManager; 
    } 

    @SuppressWarnings("unchecked") 
    @Override 
    @Transactional(readOnly = true) 
    public List<Category> findAll() { 
     return entityManager.createQuery("from Category c").getResultList(); 
    } 

    @Override 
    @Transactional(readOnly = true) 
    public Category findById(Long id) { 
     return entityManager.find(Category.class, id); 
    } 

    @Override 
    @Transactional(readOnly = false, propagation = Propagation.REQUIRES_NEW) 
    public Category save(Category category) { 
     entityManager.persist(category); 
     return category; 
    } 
} 

的applicationContext.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: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-3.1.xsd 
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd 
     http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.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"> 

    <context:property-placeholder location="classpath*:META-INF/spring/*.properties" /> 
    <context:annotation-config /> 
    <context:component-scan base-package="com.dance.dancebook" /> 
    <tx:annotation-driven /> 

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" 
     destroy-method="close"> 
     <property name="driverClassName" value="${database.driverClassName}" /> 
     <property name="url" value="${database.url}" /> 
     <property name="username" value="${database.username}" /> 
     <property name="password" value="${database.password}" /> 
     <property name="timeBetweenEvictionRunsMillis" value="1800000" /> 
     <property name="numTestsPerEvictionRun" value="3" /> 
     <property name="minEvictableIdleTimeMillis" value="1800000" /> 
     <property name="validationQuery" value="SELECT version();" /> 
    </bean> 

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

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

    <bean 
     class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" 
     id="entityManagerFactory"> 
     <property name="persistenceUnitName" value="persistenceUnit" /> 
     <property name="dataSource" ref="dataSource" /> 
    </bean> 
</beans> 

根的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:context="http://www.springframework.org/schema/context" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.1.xsd"> 

    <!-- Root Context: defines shared resources visible to all other web components --> 

    <import resource="classpath:META-INF/spring/applicationContext.xml" /> 

</beans> 

的web.xml
<?xml version="1.0" encoding="UTF-8"?> 
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 

    <!-- The definition of the Root Spring Container shared by all Servlets 
     and Filters --> 
    <context-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value>/WEB-INF/spring/root-context.xml</param-value> 
    </context-param> 

    <!-- Creates the Spring Container shared by all Servlets and Filters --> 
    <listener> 
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    </listener> 

    <!-- Spring MVC filters --> 
    <filter> 
     <filter-name>CharacterEncodingFilter</filter-name> 
     <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
     <init-param> 
      <param-name>encoding</param-name> 
      <param-value>UTF-8</param-value> 
     </init-param> 
     <init-param> 
      <param-name>forceEncoding</param-name> 
      <param-value>true</param-value> 
     </init-param> 
    </filter> 

    <filter> 
     <filter-name>HttpMethodFilter</filter-name> 
     <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class> 
    </filter> 

    <filter> 
     <filter-name>Spring OpenEntityManagerInViewFilter</filter-name> 
     <filter-class>org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter</filter-class> 
     <init-param> 
      <param-name>singleSession</param-name> 
      <param-value>true</param-value> 
     </init-param> 
     <init-param> 
      <param-name>flushMode</param-name> 
      <param-value>AUTO</param-value> 
     </init-param> 
    </filter> 

    <filter-mapping> 
     <filter-name>CharacterEncodingFilter</filter-name> 
     <url-pattern>/*</url-pattern> 
    </filter-mapping> 

    <filter-mapping> 
     <filter-name>HttpMethodFilter</filter-name> 
     <url-pattern>/*</url-pattern> 
    </filter-mapping> 

    <filter-mapping> 
     <filter-name>Spring OpenEntityManagerInViewFilter</filter-name> 
     <url-pattern>/*</url-pattern> 
    </filter-mapping> 

    <!-- Creates the Spring Container shared by all Servlets and Filters --> 
    <listener> 
     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
    </listener> 

    <!-- Processes application requests --> 
    <servlet> 
     <servlet-name>appServlet</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <init-param> 
      <param-name>contextConfigLocation</param-name> 
      <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value> 
     </init-param> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 

    <servlet-mapping> 
     <servlet-name>appServlet</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 

</web-app> 

的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:p="http://www.springframework.org/schema/p" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:security="http://www.springframework.org/schema/security" 
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd 
     http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd 
     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd 
     http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd"> 

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

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

    <resources location="/, classpath:/META-INF/web-resources/" 
     mapping="/resources/**" /> 

    <default-servlet-handler />  

    <context:component-scan base-package="com.dance.dancebook" /> 

    <interceptors> 
     <beans:bean 
      class="org.springframework.web.servlet.theme.ThemeChangeInterceptor" /> 
     <beans:bean 
      class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" 
      p:paramName="lang" /> 
    </interceptors> 

    <beans:bean 
     class="org.springframework.context.support.ReloadableResourceBundleMessageSource" 
     id="messageSource" p:basenames="WEB-INF/i18n/messages,WEB-INF/i18n/application" 
     p:fallbackToSystemLocale="false" /> 

    <beans:bean class="org.springframework.web.servlet.i18n.CookieLocaleResolver" 
     id="localeResolver" p:cookieName="locale" /> 

    <beans:bean 
     class="org.springframework.ui.context.support.ResourceBundleThemeSource" 
     id="themeSource" /> 
    <beans:bean class="org.springframework.web.servlet.theme.CookieThemeResolver" 
     id="themeResolver" p:cookieName="theme" p:defaultThemeName="standard" /> 


    <!-- Tiles Configuration --> 
    <beans:bean class="org.springframework.web.servlet.view.UrlBasedViewResolver" id="tilesViewResolver"> 
     <beans:property name="viewClass" value="org.springframework.web.servlet.view.tiles3.TilesView"/> 
    </beans:bean> 

    <beans:bean class="org.springframework.web.servlet.view.tiles3.TilesConfigurer" id="tilesConfigurer"> 
     <beans:property name="definitions"> 
      <beans:list> 
       <beans:value>/WEB-INF/layouts/layouts.xml</beans:value> 
       <!-- Scan views directory for Tiles configurations --> 
       <beans:value>/WEB-INF/views/views.xml</beans:value> 
      </beans:list> 
     </beans:property> 
    </beans:bean> 

    <beans:bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"> 
     <beans:property name="validationMessageSource" ref="messageSource"/> 
    </beans:bean>   

    <!-- Enable file upload functionality --> 
    <beans:bean class="org.springframework.web.multipart.commons.CommonsMultipartResolver" id="multipartResolver"/> 


</beans:beans> 

的persistence.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?> 
<persistence xmlns="http://java.sun.com/xml/ns/persistence" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"> 
    <persistence-unit name="persistenceUnit" transaction-type="RESOURCE_LOCAL"> 
     <provider>org.hibernate.ejb.HibernatePersistence</provider> 
     <properties> 
      <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" /> 
      <!-- value="create" to build a new database on each run; value="update" 
       to modify an existing database; value="create-drop" means the same as "create" 
       but also drops tables when Hibernate closes; value="validate" makes no changes 
       to the database --> 
      <property name="hibernate.hbm2ddl.auto" value="update" /> 
      <property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.ImprovedNamingStrategy" /> 
      <property name="hibernate.connection.charSet" value="UTF-8" /> 
      <property name="hibernate.show_sql" value="true" /> 
      <property name="hibernate.format_sql" value="true" /> 
      <!-- Uncomment the following two properties for JBoss only --> 
      <!-- property name="hibernate.validator.apply_to_ddl" value="false"/--> 
      <!-- property name="hibernate.validator.autoregister_listeners" value="false" 
       /--> 
     </properties> 
    </persistence-unit> 
</persistence> 

Hibernate的SQL输出

Hibernate: 
    select 
     nextval ('hibernate_sequence') 

我尝试了所有的选项从EntityManager cannot use persist to save element to database和有同样的问题,但sollution不解决我的。

你有什么想法吗?

+0

请向我们展示servlet-context.xml。 –

+0

你能分享错误日志吗? – RishikeshDhokare

+0

@RishiRock没有日志错误,什么都没有发生 – paulek

回答

2

为了纪念这个问题的回答:

的问题是,在特定的servlet上下文重新扫描(从而重新定义,而不应用的事务设置)由定义豆(服务和DAO)根上下文。因此,控制器获取对非事务性重定义bean的引用,而不是获取对事务性原始bean的引用。

+0

谷歌“弹簧jpa休眠没有保存数据库没有错误信息”后这个评论解决了我的问题(我从字面上配置了在互联网上找到的所有内容:)谢谢朋友! – gyorgyabraham

相关问题