<dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> <scope>test</scope> </dependency>
Bárhonnan jöhet kérés:
@CrossOrigin @GetMapping("/employees") public @ResponseBody Iterable<Employee> index() { return empRepository.findAll(); }
Csak adott helyről jöhet kérés:
@CrossOrigin("http://valahonnan.lan") @GetMapping("/employees") public @ResponseBody Iterable<Employee> index() { return empRepository.findAll(); }