spring boot+ MyBatisPlus 存储图片/修改图片
图片存储
entity实体
/**
* 背景图
*/
@ExcelResources(title="背景图")
@ApiModelProperty(value = "背景图")
private String background;
/**
* 背景图附件ID
*/
@ExcelResources(title="背景图uuid")
@ApiModelProperty(value = "背景图")
private String backgroundUuid;
/**
* 背景图的base64
*/
@TableField(exist = false)
@ApiModelProperty(value = "背景图的base64")
private String backGroundBase64;
impl
@Override
@Transactional
public void add(dt entity) {
baseMapper.insert(entity);
//处理背景图
String backGroundBase64 = entity.getBackGroundBase64().split(",")[1];
SysResultDTO<SysAttachment> sysResultDTO = sysAttachmentService.saveByBase64String(backGroundBase64,
DtTemplateService.TABLE_NAME,
ISysAttachmentService.BACKGROUND_IMAGE,
entity.getId()+"",".png");
if(sysResultDTO.getSuccess()){
//设置背景图信息
entity.setBackground(sysResultDTO.getData().getPath());
entity.setBackgroundUuid(sysResultDTO.getData().getUuid());
//处理预览图
String previewBase64 = entity.getPreviewBase64().split(",")[1];
}else{
//如果失败 删除这条数据
baseMapper.deleteById(entity.getId());
//R.error("背景图保存失败");
}
}
图片修改
impl
@Override
@Transactional
public R updateById(dt entity) {
//如果前端传的数据是base64 则进入更新图片操作
//图片不变则只修改数据
if (!V.isEmpty(entity.getBackGroundBase64())) {
//如果是图片 则判断 图片id是否否存在 不存在则添加 存在则修改
if (V.isEmpty(entity.getBackGroundGround())) {
String programImageBase64 = entity.getBackGroundBase64().split(",")[1];
SysResultDTO<SysAttachment> sysResultDTO = sysAttachmentService.saveByBase64String(programImageBase64,
DtService.TABLE_NAME,
ISysAttachmentService.BACKGROUND_IMAGE,
entity.getUuid() + "", ".png");
if (sysResultDTO.getSuccess()) {
//设置背景图信息
entity.getBackGroundBase64(sysResultDTO.getData().getPath());
entity.getBackGroundBase64Uuid(sysResultDTO.getData().getUuid());
baseMapper.updateById(entity);
} else {
//如果失败 删除这条数据
baseMapper.deleteById(entity.getUuid());
}
}else{
int backGroundBase64= entity.getBackGroundBase64().indexOf("base64");
if(backGroundBase64>0){
SysResultDTO<SysAttachment> sysResultDTO = sysAttachmentService.updateByBase64String(entity.getBackGroundBase64().split(",")[1], entity.getBackgroundUuid());
if (!sysResultDTO.getSuccess()) {
return R.error("更新背景图失败");
} else {
entity.setBackground(sysResultDTO.getData().getPath());
entity.setBackgroundUuid(sysResultDTO.getData().getUuid());
}
}
}
baseMapper.updateById(entity);
return R.ok("更新成功");
}
版权声明:本文为zhouzhou377原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。