Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/0e57eb4f963dcf2915cf8892f71127e7 to your computer and use it in GitHub Desktop.
Save dvallin/0e57eb4f963dcf2915cf8892f71127e7 to your computer and use it in GitHub Desktop.
@Component
@Validated
public class TasksService {
@Autowired
private TaskRepository repository;
public Flux<Task> list() {
return repository.findAll();
}
public Mono<Task> addTask(@NotNull AddTask command) {
return repository.insert(new Task(command.title));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment