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.meganrobb.immutable_classes.service.crud.Impl.LocalStoresCrudServiceImpl.java

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

From source file:com.mycompany.property.Services.Crud.BuildingCrudServiceImpl.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public com.mycompany.property.model.Building merge(com.mycompany.property.model.Building entity) {
    return null;
}

From source file:com.banda.truckmanagementmodel.services.crud.Impl.SemiTrailerCrudServiceImpl.java

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

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

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

From source file:com.meganrobb.immutable_classes.service.crud.Impl.HOEmployeesCrudServiceImpl.java

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

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

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

From source file:com.banda.truckmanagementmodel.services.crud.Impl.CargoTrailerCrudServiceImpl.java

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

From source file:cs544.letmegiveexam.service.UserService.java

@Transactional(propagation = Propagation.REQUIRES_NEW)
public void saveUser(User user) {
    userDAO.add(user);
}

From source file:com.banda.truckmanagementmodel.services.crud.Impl.TankContainerCrudServiceImpl.java

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

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

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