摘要: @PostMapping(path = "/upload", consumes = {MediaType.APPLICATION_FORM_URLENCODED_VALUE, MediaType.MULTIPART_FORM_DATA_VALUE}, produces = MediaType.MUL 阅读全文
posted @ 2018-01-24 16:37 xiaozhangqq1 阅读(254) 评论(0) 推荐(0)
摘要: @Component @Slf4j public class StatisticsService { private final RestTemplate restTemplate; private final ExamRepository repository; private final ExamService examService; @Autowired... 阅读全文
posted @ 2017-10-23 10:06 xiaozhangqq1 阅读(1477) 评论(0) 推荐(0)
摘要: 1 public List<Integer> merge1(List<Integer> source1, List<Integer> source2) { 2 if (source1.isEmpty()) { 3 return source2; 4 } else if (source2.isEmpt 阅读全文
posted @ 2017-09-22 09:13 xiaozhangqq1 阅读(585) 评论(0) 推荐(0)