Ignore:
Timestamp:
Apr 28, 2011, 2:31:56 PM (13 years ago)
Author:
gav
Message:

Upgrade branches/util-apps/DomainUtil to Grails-1.3.7.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/util-apps/DomainUtil/grails-app/conf/Config.groovy

    r766 r907  
    2727                      multipartForm: 'multipart/form-data'
    2828                    ]
     29
     30// URL Mapping Cache Max Size, defaults to 5000
     31//grails.urlmapping.cache.maxsize = 1000
     32
    2933// The default codec used to encode data with ${}
    30 grails.views.default.codec="none" // none, html, base64
    31 grails.views.gsp.encoding="UTF-8"
    32 grails.converters.encoding="UTF-8"
     34grails.views.default.codec = "none" // none, html, base64
     35grails.views.gsp.encoding = "UTF-8"
     36grails.converters.encoding = "UTF-8"
    3337// enable Sitemesh preprocessing of GSP pages
    3438grails.views.gsp.sitemesh.preprocess = true
     
    3741
    3842// Set to false to use the new Grails 1.2 JSONBuilder in the render method
    39 grails.json.legacy.builder=false
     43grails.json.legacy.builder = false
    4044// enabled native2ascii conversion of i18n properties files
    4145grails.enable.native2ascii = true
    42 // whether to install the java.util.logging bridge for sl4j. Disable fo AppEngine!
     46// whether to install the java.util.logging bridge for sl4j. Disable for AppEngine!
    4347grails.logging.jul.usebridge = true
    4448// packages to include in Spring bean scanning
    4549grails.spring.bean.packages = []
     50
     51// request parameters to mask when logging exceptions
     52grails.exceptionresolver.params.exclude = ['password']
    4653
    4754// set per-environment serverURL stem for creating absolute links
     
    6875    //}
    6976
    70 
    7177    error  'org.codehaus.groovy.grails.web.servlet',  //  controllers
    72                'org.codehaus.groovy.grails.web.pages', //  GSP
    73                'org.codehaus.groovy.grails.web.sitemesh', //  layouts
    74                'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
    75                'org.codehaus.groovy.grails.web.mapping', // URL mapping
    76                'org.codehaus.groovy.grails.commons', // core / classloading
    77                'org.codehaus.groovy.grails.plugins', // plugins
    78                'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
    79                'org.springframework',
    80                'org.hibernate',
     78           'org.codehaus.groovy.grails.web.pages', //  GSP
     79           'org.codehaus.groovy.grails.web.sitemesh', //  layouts
     80           'org.codehaus.groovy.grails.web.mapping.filter', // URL mapping
     81           'org.codehaus.groovy.grails.web.mapping', // URL mapping
     82           'org.codehaus.groovy.grails.commons', // core / classloading
     83           'org.codehaus.groovy.grails.plugins', // plugins
     84           'org.codehaus.groovy.grails.orm.hibernate', // hibernate integration
     85           'org.springframework',
     86           'org.hibernate',
    8187           'net.sf.ehcache.hibernate'
    8288
    8389    warn   'org.mortbay.log'
    8490}
    85 
    86 
    87      
Note: See TracChangeset for help on using the changeset viewer.