Released Grails Spy plugin 0.2
I just released version 0.2 of my Grails Spy plugin.
About
The Grails Spy plugin provides some views to inspect Grails internals such as the Spring application context(s), artefacts, etc.
As most of the beans of the Grails WebApplicationContext are constructed at runtime with the help of a BeanBuilder, there is no Spring xml file with bean definitions.
In order to browse the dynamic bean definitions, Grails Spy can be used to watch into an application’s guts.
Installation
grails install-plugin spy
Usage
Simply install the plugin, enable the Spy controller for the dev environment and run grails run-app. Then browse to http://localhost:8080/yourapp/spy and enjoy.
Changes
- For security reasons the Spy controller must now be enabled in Config.groovy:
grails.plugins.spy.enabled = true
The plugin can be enabled or disabled individually for each environment. Example:
environments { production { grails.serverURL = "http://www.changeme.com" } development { grails.serverURL = "http://localhost:8080/${appName}" grails.plugins.spy.enabled = true } test { grails.serverURL = "http://localhost:8080/${appName}" } } - 'inspect' is now the default action for the spy controller, so it can be called as http://localhost:8080/yourapp/spy instead of http://localhost:8080/yourapp/spy/inspect
License
The Spy plugin is released under the Apache License 2.0.
Source code and Issues
The source code is hosted at GitHub, issues can be reported here.
Screenshots
Eye-candy you say? See below:
GrailsSpy: GrailsApplication
GrailsSpy: ApplicationContext view
GrailsSpy: bean view






