I have an external data source, which will return a string indicating the name of a Grails service to use.
What's the syntax to get an instance of this service programatically given the name of the service as a String?
ie. given 'GoogleWeather', give me an instance of GoogleWeatherService.
Thanks!
The Grails documentation describes a way to get a service when in a servlet. This might be useful, if you can obtain the same objects in your context:
ApplicationContext ctx = (ApplicationContext)ApplicationHolder.getApplication().getMainContext();
CountryServiceInt service = (CountryServiceInt) ctx.getBean("countryService");
String str = service.sayHello(request.getParameter.("name"));
Since ApplicationHolder has been deprecated, this is another way to get the ApplicationContext:
ApplicationContext ctx = Holders.grailsApplication.mainContext
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With