Guest User

Untitled

a guest
Jun 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. @RestController
  2. public class RecipeRestController {
  3.  
  4. @Autowired
  5. private RecipeRepositoryES recipeRepositoryES;
  6.  
  7. @RequestMapping("/recipe/by-name")
  8. public List<RecipeEntityES> greeting(@RequestParam(value = "name", defaultValue = "pasta") String name) {
  9. return recipeRepositoryES.findByName(name);
  10. }
  11. }
Add Comment
Please, Sign In to add comment