Добавлен анализ пакета

This commit is contained in:
serega6531
2019-04-28 03:04:30 +03:00
parent 6eddd6f64f
commit 5f668baf05
5 changed files with 65 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ public class ServiceController {
@DeleteMapping("/{port}")
public void deleteService(@PathVariable int port) {
service.deleteById(port);
service.deleteByPort(port);
}
@PostMapping