jmtere设置界面
项目接收文件接口
@RequestMapping(value = "/importLicenseFile", method = RequestMethod.POST)
public void importLicenseFile(@RequestParam("file") CommonsMultipartFile file, HttpServletRequest request, HttpServletResponse response) throws IOException {
String json = licenseManageService.importLicenseFile(file);
ResponseResult.buildResponse(json, response);
}