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.codekul.simpleboot.service.ServiceImplUser.java

@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public Boolean login(User user) throws Exception {

    return repoUser.login(user);
}

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

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

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

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

From source file:com.mycompany.Services.implementation.EquipmentCrudImpl.java

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

From source file:com.mycompany.Services.implementation.AdsCrudImpl.java

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

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

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

From source file:service.crud.Impl.crudDaycareStaffImpl.java

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

From source file:service.crud.Impl.crudNurseDetailsImpl.java

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

From source file:service.crud.Impl.crudStartPokemonImpl.java

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

From source file:cputgroup3a.immutability.service.crud.Impl.MusicImpl.java

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