Untitled

mail@pastecode.io avatar
unknown
plain_text
13 days ago
260 B
3
Indexable
Never
 @PostMapping("/insertdata")
    public ResponseEntity<String> insertDataIpFilter(@RequestBody MultipartFile file) throws Exception {
        ipFilterService.processIPFilterFile(file);
        return ResponseEntity.ok("File processed successfully.");
    }
Leave a Comment