去除 请求多余路径

This commit is contained in:
fum 2021-04-28 11:35:13 +08:00
parent 12d5dd1400
commit fc7ef6be90
1 changed files with 2 additions and 3 deletions

View File

@ -6,12 +6,12 @@ import org.flowable.engine.runtime.Execution;
import org.flowable.engine.runtime.ProcessInstance;
import org.flowable.image.ProcessDiagramGenerator;
import org.flowable.task.api.Task;
import org.flowable.task.api.TaskQuery;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import javax.servlet.http.HttpServletResponse;
import java.io.InputStream;
import java.io.OutputStream;
@ -26,7 +26,6 @@ import java.util.List;
* @Date: Create in 2019/5/20 9:45
*/
@Controller
@RequestMapping(value = "expense")
public class ExpenseController {
@Autowired
@ -35,7 +34,7 @@ public class ExpenseController {
private TaskService taskService;
@Autowired
private RepositoryService repositoryService;
@Autowired
@Resource
private ProcessEngine processEngine;
/**