Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8") con.addRequestProperty("Host", "????") con.addRequestProperty("Origin", "????") con.addRequestProperty("Referer", "????")
@PostMapping("/header/new") public boolean save(@RequestBody List<HeaderEntity> headerEntityList) { for (HeaderEntity headerEntity: headerEntityList) { headerService.save(headerEntity); } return true; }