jetztgradnet / grails-spy-plugin

Spy into Grails internals

Home Page:http://blog.jetztgrad.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Grails Spy plugin

About

The Grails Spy plugin provides some views to inspect Grails internals such as the Spring application context(s), artefacts, etc.

License

The Spy plugin is released under the Apache License 2.0.

Installation

Simply call grails install-plugin spy to install the OSGi plugin

Grails Spy must be activated in Config.groovy:

grails.plugins.spy.enabled = true

For security reasons, Spy can be enabled for a single environment, e.g. development only:

    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}"
        }
    }

Usage

Go to http://localhost:8080/myapp/spy/ and inspect available objects and beans.

About

Spy into Grails internals

http://blog.jetztgrad.net

License:Other


Languages

Language:Groovy 96.3%Language:JavaScript 3.7%