grails-scanner-plugin
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:A plugin to customize grails resource and configuration scanning behavior
Grails Scanner Plugin
===

A plugin to customize grails resource and configuration scanning behavior.  At the time of writing, this allows a developer to disable the automatic resource scanning for Grails 1.3.x environments.

Currently, it has only been tested with Grails Version 1.3.7.

Usage Examples
---


## Disable scanning universally

**grails-app/conf/Config.groovy**

	grails.scan.disable = true

## Disable scanning for the production environment only

**grails-app/conf/Config.groovy**

	environments {
	    production {
	        grails.serverURL = "http://www.changeme.com"
			grails.scan.disable = true
	    }
	    development {
	        grails.serverURL = "http://localhost:8080/${appName}"
	    }
	    test {
	        grails.serverURL = "http://localhost:8080/${appName}"
	    }
	}

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。