How to call a Grails service in a view?
问题 Simple question : I have a service class (let's say helpersService ) and a method def constructURI(params) . How can I call this method from a template view. I have tried the following code without success <% def helpersService = new HelpersService() // or def helpersService %> <img src="${helpersService. constructURI(params)}"/> But I get the following result: No signature of method: com.HelpersService. constructURI() is applicable for argument types... or (in case I use def helpersService )