Advertisement
Guest User

Untitled

a guest
Jan 28th, 2022
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @GetMapping("search")
  2. public ModelAndView searchFilm(@Valid searchForm form, Errors errors) {
  3. var modelAndView = new ModelAndView("film");
  4. if (errors.hasErrors()) {
  5. return modelAndView;
  6. }
  7. client.findByEpisodeId(form.getId())
  8. .ifPresent(film -> modelAndView.addObject(film));
  9. return modelAndView;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement