Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

business layer:

public class ServiceImpl implements Service{

@Transactional(readOnly = false) public void createOrUpdateAppPing(String s) {

  servicePingDao.createOrUpdateAppPing(s);

}

}

Dao layer

public   void createOrUpdateAppPing(String sc) {
      EntityManager  entityManager = entityManagerFactory.createEntityManager();    
          pingScService(sc,entityManager);
          if(ifHasPingScConfig(sc,entityManager)) {
             updateScConfig(sc,entityManager);
          } else {
             createScConfig(sc,entityManager);      }
         entityManager.close();    
   }

here : ** pingScService has select query ** updateScConfig - update query ** createScConfig-insert

 config service-datasorce.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:osgi="http://www.springframework.org/schema/osgi"
    xmlns:osgix="http://www.springframework.org/schema/osgi-compendium"
    xmlns:ctx="http://www.springframework.org/schema/context"   
    xsi:schemaLocation="
    http://www.springframework.org/schema/osgi
          http://www.springframework.org/schema/osgi/spring-osgi.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
    http://www.springframework.org/schema/osgi-compendium 
      http://www.springframework.org/schema/osgi-compendium/spring-osgi-compendium.xsd     
       ">

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

        <bean id="jpaAdapter"
            class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
            <property name="databasePlatform" value="com.luthresearch.savvyconnect.model.PostgreSQLDialectUuid" />
            <property name="showSql" value="true" />
            <property name="generateDdl" value="true" />
    </bean> 
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">       
            <property name="driverClassName" value="${database.driver.class}" />        
            <property name="url"             value="${database.savvyconnect.url}" />
            <property name="username"        value="${database.savvyconnect.username}" />
            <property name="password"        value="${database.savvyconnect.password}" />

    </bean>



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

  </bean>


  IN service.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:osgi="http://www.springframework.org/schema/osgi"
       xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/osgi
                        http://www.springframework.org/schema/osgi/spring-osgi.xsd
                               http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">


    <bean id="service"
        class="com.services.impl.SServicempl" autowire="byName">

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

Now i want to add transaction support at service layer ...How i can do this.

I tried adding @Transaction annotation but I am getting

javax.persistence.TransactionRequiredException: Executing an update/delete query

share|improve this question
Did you declare a transaction manager in the Spring config files? – BobG Aug 19 '11 at 22:05
Have you read the documentation? It's very exhaustive and has examples. See static.springsource.org/spring/docs/3.0.x/… – JB Nizet Aug 19 '11 at 22:09
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> <property name="entityManagerFactory" ref="entityManagerFactory"/> </bean> – Chandra Aug 19 '11 at 22:21
You also need <tx:annotation-driven /> if you want to use @Transactional – BobG Aug 19 '11 at 22:36
that is also i have added :(..but does not work. – Chandra Aug 19 '11 at 22:43
show 13 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.