// locations to search for config files that get merged into the main config // config files can either be Java properties files or ConfigSlurper scripts // grails.config.locations = [ "classpath:${appName}-config.properties", // "classpath:${appName}-config.groovy", // "file:${userHome}/.grails/${appName}-config.properties", // "file:${userHome}/.grails/${appName}-config.groovy"] // if(System.properties["${appName}.config.location"]) { // grails.config.locations << "file:" + System.properties["${appName}.config.location"] // } grails.mime.file.extensions = true // enables the parsing of file extensions from URLs into the request format grails.mime.use.accept.header = false grails.mime.types = [html: ['text/html', 'application/xhtml+xml'], xml: ['text/xml', 'application/xml'], text: 'text/plain', js: 'text/javascript', rss: 'application/rss+xml', atom: 'application/atom+xml', css: 'text/css', csv: 'text/csv', all: '*/*', json: ['application/json', 'text/json'], form: 'application/x-www-form-urlencoded', multipartForm: 'multipart/form-data' ] // The default codec used to encode data with ${} grails.views.default.codec = "none" // none, html, base64 grails.views.gsp.encoding = "UTF-8" grails.converters.encoding = "UTF-8" // enabled native2ascii conversion of i18n properties files grails.enable.native2ascii = true // set per-environment serverURL stem for creating absolute links environments { production { grails.serverURL = "http://www.changeme.com" } } // log4j configuration log4j = { error 'org.codehaus.groovy.grails.web.servlet', // controllers 'org.codehaus.groovy.grails.web.pages', // GSP 'org.codehaus.groovy.grails.web.sitemesh', // layouts 'org.codehaus.groovy.grails."web.mapping.filter', // URL mapping 'org.codehaus.groovy.grails."web.mapping', // URL mapping 'org.codehaus.groovy.grails.commons', // core / classloading 'org.codehaus.groovy.grails.plugins', // plugins 'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration 'org.springframework', 'org.hibernate' warn 'org.mortbay.log' } plugins { h2 { system{ bindAddress = "127.0.0.1" } /** * For console.standalone, tcpserver, and pgserver, 'disable' is a special option, and the rest are H2 Server options. * Check http://www.h2database.com/javadoc/org/h2/tools/Server.html#r8 */ console { servlet { disable = false; mapping = '/h2-console/*' //must end with '/*' } standalone { // refer to the -web* options disable = false; webPort = 8082; webAllowOthers = true; //webSSL = false; } } tcpserver { disable = false; tcpPort = 8043; tcpAllowOthers = true } pgserver { disable = true; pgPort = 5432; pgAllowOthers = true; baseDir = './data/h2'; trace = '' } database { // sample { // a Spring DriverManagerDataSource will be created as "${databaseName}DataSource" /** * refer to: http://www.h2database.com/html/features.html#database_url */ url = "jdbc:h2:./data/h2/sample;MODE=MYSQL"; user = "sa"; //password = "" init { //disable = true; initClass = "org.grails.plugins.h2.DBInitializer" // create a new instance and call its init( dataSource) method } } } } }