| | |
| | | } |
| | | |
| | | @GetMapping("generat") |
| | | public void generat(String id, String remark,String zipFileName, HttpServletResponse response) throws IOException { |
| | | byte[] data = mpkFileService.generatorCode(id, remark,zipFileName); |
| | | public void generat(String id, String remark,String zipFileName, HttpServletResponse response) { |
| | | try { |
| | | byte[] data = mpkFileService.generatorCode(id, remark,zipFileName); |
| | | |
| | | response.reset(); |
| | | response.setHeader("Content-Disposition", "attachment; filename=\"" + URLEncoder.encode(zipFileName, "UTF-8") + "\""); |
| | | response.addHeader("Content-Length", "" + data.length); |
| | | response.setContentType("application/octet-stream; charset=UTF-8"); |
| | | response.reset(); |
| | | response.setHeader("Content-Disposition", "attachment; filename=\"" + URLEncoder.encode(zipFileName, "UTF-8") + "\""); |
| | | response.addHeader("Content-Length", "" + data.length); |
| | | response.setContentType("application/octet-stream; charset=UTF-8"); |
| | | |
| | | IOUtils.write(data, response.getOutputStream()); |
| | | IOUtils.write(data, response.getOutputStream()); |
| | | } catch (Exception e) { |
| | | throw new RuntimeException("代码生成异常",e); |
| | | } |
| | | } |
| | | |
| | | @GetMapping("packageModel") |
| | |
| | | |
| | | @PostMapping("/upload") |
| | | @Operation(summary = "python文件上传") |
| | | public CommonResult<Map<String,String>> importExcel(@RequestParam("file") MultipartFile file) throws Exception { |
| | | public CommonResult<Map<String,String>> upload(@RequestParam("file") MultipartFile file) throws Exception { |
| | | Map<String,String> result = mpkFileService.savePyFile(file); |
| | | return success(result); |
| | | } |
| | | |
| | | @PostMapping("/publish") |
| | | public CommonResult<String> publish(@RequestBody Map<String, Object> params) { |
| | | return mpkFileService.publish(params); |
| | | } |
| | | } |