Browse Source

代码优化

test
smallchill 6 years ago
parent
commit
1556c50459
  1. 2
      blade-common/src/main/java/org/springblade/common/utils/CommonUtil.java
  2. 9
      blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/config/FlowableConfiguration.java
  3. 22
      blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/controller/FlowManagerController.java
  4. 12
      blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/service/FlowService.java
  5. 17
      blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/service/impl/FlowServiceImpl.java

2
blade-common/src/main/java/org/springblade/common/tool/CommonUtil.java → blade-common/src/main/java/org/springblade/common/utils/CommonUtil.java

@ -14,7 +14,7 @@
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
package org.springblade.common.tool;
package org.springblade.common.utils;
/**
* 通用工具类

9
blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/config/FlowableConfiguration.java

@ -20,9 +20,7 @@ import lombok.AllArgsConstructor;
import org.flowable.spring.SpringProcessEngineConfiguration;
import org.flowable.spring.boot.EngineConfigurationConfigurer;
import org.flowable.spring.boot.FlowableProperties;
import org.springblade.core.secure.registry.SecureRegistry;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
@ -43,11 +41,4 @@ public class FlowableConfiguration implements EngineConfigurationConfigurer<Spri
engineConfiguration.setAnnotationFontName(flowableProperties.getAnnotationFontName());
}
@Bean
public SecureRegistry secureRegistry() {
SecureRegistry secureRegistry = new SecureRegistry();
secureRegistry.excludePathPatterns("/manager/resource");
return secureRegistry;
}
}

22
blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/controller/FlowManagerController.java

@ -26,14 +26,11 @@ import org.springblade.core.mp.support.Query;
import org.springblade.core.secure.annotation.PreAuth;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.constant.RoleConstant;
import org.springblade.core.tool.utils.IntegerPool;
import org.springblade.flow.engine.entity.FlowProcess;
import org.springblade.flow.engine.service.FlowService;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.util.List;
/**
@ -96,23 +93,4 @@ public class FlowManagerController {
return R.status(flowService.deployUpload(files, category));
}
/**
* 资源展示
*
* @param processId 流程id
* @param instanceId 实例id
* @param resourceType 资源类型
* @param response 响应
*/
@GetMapping("resource")
@ApiOperation(value = "资源展示", notes = "传入processId,instanceId,resourceType", position = 4)
public void resource(String processId, String instanceId, String resourceType, HttpServletResponse response) throws Exception {
InputStream resourceAsStream = flowService.resource(processId, instanceId, resourceType);
byte[] b = new byte[1024];
int len;
while ((len = resourceAsStream.read(b, 0, IntegerPool.INT_1024)) != -1) {
response.getOutputStream().write(b, 0, len);
}
}
}

12
blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/service/FlowService.java

@ -24,7 +24,6 @@ import org.springblade.flow.engine.entity.FlowModel;
import org.springblade.flow.engine.entity.FlowProcess;
import org.springframework.web.multipart.MultipartFile;
import java.io.InputStream;
import java.util.List;
/**
@ -88,17 +87,6 @@ public interface FlowService extends IService<FlowModel> {
* @return
*/
boolean deleteDeployment(String deploymentIds);
/**
* 资源展示
*
* @param processId 流程ID
* @param instanceId 流程实例ID
* @param resourceType 资源类型(xml|image)
* @return
*/
InputStream resource(String processId, String instanceId, String resourceType);
/**
* 上传部署流程
*

17
blade-ops/blade-flow/src/main/java/org/springblade/flow/engine/service/impl/FlowServiceImpl.java

@ -44,7 +44,6 @@ import org.flowable.engine.task.Comment;
import org.springblade.core.log.exception.ServiceException;
import org.springblade.core.tool.utils.DateUtil;
import org.springblade.core.tool.utils.Func;
import org.springblade.core.tool.utils.StringPool;
import org.springblade.core.tool.utils.StringUtil;
import org.springblade.flow.core.entity.BladeFlow;
import org.springblade.flow.core.utils.TaskUtil;
@ -244,22 +243,6 @@ public class FlowServiceImpl extends ServiceImpl<FlowMapper, FlowModel> implemen
return true;
}
@Override
public InputStream resource(String processId, String instanceId, String resourceType) {
if (StringUtils.isBlank(processId)) {
ProcessInstance processInstance = runtimeService.createProcessInstanceQuery().processInstanceId(instanceId).singleResult();
processId = processInstance.getProcessDefinitionId();
}
ProcessDefinition processDefinition = repositoryService.createProcessDefinitionQuery().processDefinitionId(processId).singleResult();
String resourceName = StringPool.EMPTY;
if (resourceType.equals(IMAGE_NAME)) {
resourceName = processDefinition.getDiagramResourceName();
} else if (resourceType.equals(XML_NAME)) {
resourceName = processDefinition.getResourceName();
}
return repositoryService.getResourceAsStream(processDefinition.getDeploymentId(), resourceName);
}
@Override
public boolean deployUpload(List<MultipartFile> files, String category) {
files.forEach(file -> {

Loading…
Cancel
Save