parent
57f935faed
commit
c2bf0d551b
|
@ -37,17 +37,17 @@ public class MyRestController {
|
||||||
this.customerRepository = customerRepository;
|
this.customerRepository = customerRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/{user}")
|
@GetMapping("/{userId}")
|
||||||
public User getUser(@PathVariable Long userId) {
|
public User getUser(@PathVariable Long userId) {
|
||||||
return this.userRepository.findById(userId).get();
|
return this.userRepository.findById(userId).get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/{user}/customers")
|
@GetMapping("/{userId}/customers")
|
||||||
public List<Customer> getUserCustomers(@PathVariable Long userId) {
|
public List<Customer> getUserCustomers(@PathVariable Long userId) {
|
||||||
return this.userRepository.findById(userId).map(this.customerRepository::findByUser).get();
|
return this.userRepository.findById(userId).map(this.customerRepository::findByUser).get();
|
||||||
}
|
}
|
||||||
|
|
||||||
@DeleteMapping("/{user}")
|
@DeleteMapping("/{userId}")
|
||||||
public void deleteUser(@PathVariable Long userId) {
|
public void deleteUser(@PathVariable Long userId) {
|
||||||
this.userRepository.deleteById(userId);
|
this.userRepository.deleteById(userId);
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,19 +38,19 @@ public class MyRestController {
|
||||||
this.customerRepository = customerRepository;
|
this.customerRepository = customerRepository;
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/{user}")
|
@GetMapping("/{userId}")
|
||||||
public Mono<User> getUser(@PathVariable Long userId) {
|
public Mono<User> getUser(@PathVariable Long userId) {
|
||||||
return this.userRepository.findById(userId);
|
return this.userRepository.findById(userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping("/{user}/customers")
|
@GetMapping("/{userId}/customers")
|
||||||
public Flux<Customer> getUserCustomers(@PathVariable Long userId) {
|
public Flux<Customer> getUserCustomers(@PathVariable Long userId) {
|
||||||
return this.userRepository.findById(userId).flatMapMany(this.customerRepository::findByUser);
|
return this.userRepository.findById(userId).flatMapMany(this.customerRepository::findByUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
@DeleteMapping("/{user}")
|
@DeleteMapping("/{userId}")
|
||||||
public void deleteUser(@PathVariable Long userId) {
|
public Mono<Void> deleteUser(@PathVariable Long userId) {
|
||||||
this.userRepository.deleteById(userId);
|
return this.userRepository.deleteById(userId);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue