Grails Goodness: Use Services in GSP with g:set Tag
Join the DZone community and get the full member experience.
Join For FreeIn Grails we can use the set
tag to define a variable with a value on a GSP. But we can also use the same tag to access a Grails service on a GSP. We must use the bean
attribute with the name of the Grails service. We can even pass the name of any Spring managed bean in the application context of our application.
In the following sample GSP we access a Grails service with the name BlogService
. We invoke the method allTitles()
and use the result.
<html> <head> <meta content="main" name="layout"/> </head> <body> %{--Use BlogService--}% <g:set var="blog" bean="blogService"/> <ul> <g:each in="${blog.allTitles()}" var="title"> <li>${title}</li> </g:each> </ul> </body> </html>
Published at DZone with permission of Hubert Klein Ikkink, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Front-End: Cache Strategies You Should Know
-
Guide To Selecting the Right GitOps Tool - Argo CD or Flux CD
-
How To Backup and Restore a PostgreSQL Database
-
The SPACE Framework for Developer Productivity
Comments