Example usage for org.springframework.transaction.annotation Propagation REQUIRES_NEW

List of usage examples for org.springframework.transaction.annotation Propagation REQUIRES_NEW

Introduction

In this page you can find the example usage for org.springframework.transaction.annotation Propagation REQUIRES_NEW.

Prototype

Propagation REQUIRES_NEW

To view the source code for org.springframework.transaction.annotation Propagation REQUIRES_NEW.

Click Source Link

Document

Create a new transaction, and suspend the current transaction if one exists.

Usage

From source file:com.tracy.immutable.service.crud.Impl.TextBookCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Textbook merge(Textbook entity) {
    return null;
}

From source file:com.immutabledomain.phonestore.services.crud.Impl.HTCCrudServicieImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public HTC merge(HTC entity) {
    return null;
}

From source file:org.jdbi.v3.spring4.Service.java

@Transactional(propagation = Propagation.REQUIRES_NEW, isolation = Isolation.READ_UNCOMMITTED)
void inRequiresNewReadUncommitted(Callback c);

From source file:com.sihle.elections2.services.crud.Imp.PresidentCrudserviceImp.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Presidents merge(Presidents entity) {
    return null;
}

From source file:com.sihle.elections2.services.crud.Imp.StatisticCrudserviceImp.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Statistics merge(Statistics entity) {
    return null;
}

From source file:com.immutabledomain.phonestore.services.crud.Impl.SonyCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Sony merge(Sony entity) {
    return null;
}

From source file:com.tracy.immutable.service.crud.Impl.PrincipleCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Principle merge(Principle entity) {
    return null;
}

From source file:com.pharmacy.pharmacyweb.services.crud.Impl.ProductCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Product merge(Product entity) {
    return null;
}

From source file:com.immutabledomain.phonestore.services.crud.Impl.NokiaCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Nokia merge(Nokia entity) {
    return null;
}

From source file:com.pharmacy.pharmacyweb.services.crud.Impl.EquipmentCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Equipment merge(Equipment entity) {
    return null;
}