Guest User

Untitled

a guest
Oct 17th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import org.apache.aries.blueprint.annotation.*
  2.  
  3. @Inject studentService
  4.  
  5. get("/students/:id") {
  6. def student = studentService.get(urlparams.id)
  7. "Hello, ${student.name}"
  8. }
Add Comment
Please, Sign In to add comment