Search in sources :

Example 1 with BaseEntity

use of com.netsteadfast.greenstep.base.model.BaseEntity in project bamboobsc by billchen198318.

the class BaseService method updateObject.

@SuppressWarnings({ "unchecked", "rawtypes" })
@ServiceMethodAuthority(type = { ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
public DefaultResult<T> updateObject(T object) throws ServiceException, Exception {
    if (object == null || !(object instanceof BaseValueObj)) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.OBJ_NULL));
    }
    DefaultResult<T> result = new DefaultResult<T>();
    Class<T> valueObjectClass = GenericsUtils.getSuperClassGenricType(getClass(), 0);
    Class<E> entityObjectClass = GenericsUtils.getSuperClassGenricType(getClass(), 1);
    E entityObject = entityObjectClass.newInstance();
    ((BaseEntity) entityObject).setOid(((BaseValueObj) object).getOid());
    E findEntity = this.findByOid(entityObject);
    if (findEntity == null) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.SEARCH_NO_DATA));
    }
    this.doMapper(object, findEntity, this.getMapperIdVo2Po());
    E updateEntity = null;
    try {
        ((BaseEntity) findEntity).setUuserid(this.getAccountId());
        ((BaseEntity) findEntity).setUdate(this.generateDate());
        updateEntity = this.getBaseDataAccessObject().update(findEntity);
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (updateEntity != null && ((BaseEntity) updateEntity).getOid() != null) {
        T updateValueObj = valueObjectClass.newInstance();
        this.doMapper(updateEntity, updateValueObj, this.getMapperIdPo2Vo());
        result.setValue(updateValueObj);
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_SUCCESS)));
    } else {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_FAIL)));
    }
    return result;
}
Also used : SystemMessage(com.netsteadfast.greenstep.base.model.SystemMessage) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) BaseEntity(com.netsteadfast.greenstep.base.model.BaseEntity) BaseValueObj(com.netsteadfast.greenstep.base.model.BaseValueObj) DefaultResult(com.netsteadfast.greenstep.base.model.DefaultResult) IOException(java.io.IOException) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) ServiceMethodAuthority(com.netsteadfast.greenstep.base.model.ServiceMethodAuthority) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with BaseEntity

use of com.netsteadfast.greenstep.base.model.BaseEntity in project bamboobsc by billchen198318.

the class SimpleService method deleteEntity.

@ServiceMethodAuthority(type = { ServiceMethodType.DELETE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
public DefaultResult<Boolean> deleteEntity(E object) throws ServiceException, Exception {
    if (object == null || !(object instanceof BaseEntity)) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.OBJ_NULL));
    }
    DefaultResult<Boolean> result = new DefaultResult<Boolean>();
    boolean status = false;
    if (this.countByOid(object) > 0) {
        this.delete(object);
        status = true;
    }
    result.setValue(status);
    if (status) {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.DELETE_SUCCESS)));
    } else {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.DELETE_FAIL)));
    }
    return result;
}
Also used : SystemMessage(com.netsteadfast.greenstep.base.model.SystemMessage) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) BaseEntity(com.netsteadfast.greenstep.base.model.BaseEntity) DefaultResult(com.netsteadfast.greenstep.base.model.DefaultResult) ServiceMethodAuthority(com.netsteadfast.greenstep.base.model.ServiceMethodAuthority) Transactional(org.springframework.transaction.annotation.Transactional)

Example 3 with BaseEntity

use of com.netsteadfast.greenstep.base.model.BaseEntity in project bamboobsc by billchen198318.

the class SimpleService method updateEntity.

@SuppressWarnings({ "rawtypes" })
@ServiceMethodAuthority(type = { ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
public DefaultResult<E> updateEntity(E object) throws ServiceException, Exception {
    if (object == null || !(object instanceof BaseEntity)) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.OBJ_NULL));
    }
    DefaultResult<E> result = new DefaultResult<E>();
    try {
        ((BaseEntity) object).setUuserid(this.getAccountId());
        ((BaseEntity) object).setUdate(this.generateDate());
        object = this.getBaseDataAccessObject().update(object);
        if (object != null && ((BaseEntity) object).getOid() != null) {
            result.setValue(object);
            result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_SUCCESS)));
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (result.getValue() == null) {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.UPDATE_FAIL)));
    }
    return result;
}
Also used : SystemMessage(com.netsteadfast.greenstep.base.model.SystemMessage) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) BaseEntity(com.netsteadfast.greenstep.base.model.BaseEntity) DefaultResult(com.netsteadfast.greenstep.base.model.DefaultResult) IOException(java.io.IOException) InvocationTargetException(java.lang.reflect.InvocationTargetException) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) ServiceMethodAuthority(com.netsteadfast.greenstep.base.model.ServiceMethodAuthority) Transactional(org.springframework.transaction.annotation.Transactional)

Example 4 with BaseEntity

use of com.netsteadfast.greenstep.base.model.BaseEntity in project bamboobsc by billchen198318.

the class SimpleService method saveOrMergeEntity.

@ServiceMethodAuthority(type = { ServiceMethodType.INSERT, ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
@SuppressWarnings({ "rawtypes", "unchecked" })
private DefaultResult<E> saveOrMergeEntity(String type, boolean checkUK, E object) throws ServiceException, Exception {
    if (object == null || !(object instanceof BaseEntity)) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.OBJ_NULL));
    }
    DefaultResult<E> result = new DefaultResult<E>();
    if (checkUK) {
        int countByUK = 1;
        try {
            countByUK = this.getBaseDataAccessObject().countByUK(object);
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (countByUK > 0) {
            throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.DATA_IS_EXIST));
        }
    }
    ((BaseEntity) object).setOid(this.generateOid());
    ((BaseEntity) object).setCuserid(this.getAccountId());
    ((BaseEntity) object).setCdate(this.generateDate());
    E insertEntity = null;
    try {
        if ("save".equals(type)) {
            insertEntity = this.getBaseDataAccessObject().save(object);
        } else {
            insertEntity = this.getBaseDataAccessObject().merge(object);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (insertEntity != null && ((BaseEntity) insertEntity).getOid() != null) {
        result.setValue(insertEntity);
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.INSERT_SUCCESS)));
    } else {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.INSERT_FAIL)));
    }
    return result;
}
Also used : SystemMessage(com.netsteadfast.greenstep.base.model.SystemMessage) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) BaseEntity(com.netsteadfast.greenstep.base.model.BaseEntity) DefaultResult(com.netsteadfast.greenstep.base.model.DefaultResult) IOException(java.io.IOException) InvocationTargetException(java.lang.reflect.InvocationTargetException) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) ServiceMethodAuthority(com.netsteadfast.greenstep.base.model.ServiceMethodAuthority) Transactional(org.springframework.transaction.annotation.Transactional)

Example 5 with BaseEntity

use of com.netsteadfast.greenstep.base.model.BaseEntity in project bamboobsc by billchen198318.

the class BaseService method saveOrMergeObject.

@ServiceMethodAuthority(type = { ServiceMethodType.INSERT, ServiceMethodType.UPDATE })
@Transactional(propagation = Propagation.REQUIRED, readOnly = false, rollbackFor = { RuntimeException.class, IOException.class, Exception.class })
@SuppressWarnings({ "rawtypes", "unchecked" })
private DefaultResult<T> saveOrMergeObject(String type, boolean checkUK, T object) throws ServiceException, Exception {
    if (object == null || !(object instanceof BaseValueObj)) {
        throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.OBJ_NULL));
    }
    DefaultResult<T> result = new DefaultResult<T>();
    Class<T> valueObjectClass = GenericsUtils.getSuperClassGenricType(getClass(), 0);
    Class<E> entityObjectClass = GenericsUtils.getSuperClassGenricType(getClass(), 1);
    E entityObject = entityObjectClass.newInstance();
    this.doMapper(object, entityObject, getMapperIdVo2Po());
    if (checkUK) {
        int countByUK = 1;
        try {
            countByUK = this.getBaseDataAccessObject().countByUK(entityObject);
        } catch (Exception e) {
            e.printStackTrace();
        }
        if (countByUK > 0) {
            throw new ServiceException(SysMessageUtil.get(GreenStepSysMsgConstants.DATA_IS_EXIST));
        }
    }
    ((BaseEntity) entityObject).setOid(this.generateOid());
    ((BaseEntity) entityObject).setCuserid(this.getAccountId());
    ((BaseEntity) entityObject).setCdate(this.generateDate());
    E insertEntity = null;
    try {
        if ("save".equals(type)) {
            insertEntity = this.getBaseDataAccessObject().save(entityObject);
        } else {
            insertEntity = this.getBaseDataAccessObject().merge(entityObject);
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    if (insertEntity != null && ((BaseEntity) insertEntity).getOid() != null) {
        T insertValueObj = valueObjectClass.newInstance();
        this.doMapper(insertEntity, insertValueObj, getMapperIdPo2Vo());
        result.setValue(insertValueObj);
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.INSERT_SUCCESS)));
    } else {
        result.setSystemMessage(new SystemMessage(SysMessageUtil.get(GreenStepSysMsgConstants.INSERT_FAIL)));
    }
    return result;
}
Also used : SystemMessage(com.netsteadfast.greenstep.base.model.SystemMessage) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) BaseEntity(com.netsteadfast.greenstep.base.model.BaseEntity) BaseValueObj(com.netsteadfast.greenstep.base.model.BaseValueObj) DefaultResult(com.netsteadfast.greenstep.base.model.DefaultResult) IOException(java.io.IOException) ServiceException(com.netsteadfast.greenstep.base.exception.ServiceException) ServiceMethodAuthority(com.netsteadfast.greenstep.base.model.ServiceMethodAuthority) Transactional(org.springframework.transaction.annotation.Transactional)

Aggregations

ServiceException (com.netsteadfast.greenstep.base.exception.ServiceException)6 BaseEntity (com.netsteadfast.greenstep.base.model.BaseEntity)6 DefaultResult (com.netsteadfast.greenstep.base.model.DefaultResult)6 ServiceMethodAuthority (com.netsteadfast.greenstep.base.model.ServiceMethodAuthority)6 SystemMessage (com.netsteadfast.greenstep.base.model.SystemMessage)6 Transactional (org.springframework.transaction.annotation.Transactional)6 IOException (java.io.IOException)4 BaseValueObj (com.netsteadfast.greenstep.base.model.BaseValueObj)3 InvocationTargetException (java.lang.reflect.InvocationTargetException)2