Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. class Person {
  2.  
  3. String firstName
  4. String lastName
  5.  
  6. String fullName(){
  7. return "$firstName $lastName"
  8. }
  9. }
  10.  
  11. class PersonController {
  12.  
  13. def show(){
  14. respond Person.get(params.id)
  15. }
  16.  
  17. }
  18.  
  19. model {
  20. Person person
  21. }
  22.  
  23. json {
  24. lastName person.lastName
  25. firstName person.firstName
  26. //fullName person.fullName() -- this line doesn't compile
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement