- Timestamp:
- Apr 28, 2011, 2:31:56 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/util-apps/DomainUtil/grails-app/conf/Config.groovy
r766 r907 27 27 multipartForm: 'multipart/form-data' 28 28 ] 29 30 // URL Mapping Cache Max Size, defaults to 5000 31 //grails.urlmapping.cache.maxsize = 1000 32 29 33 // The default codec used to encode data with ${} 30 grails.views.default.codec ="none" // none, html, base6431 grails.views.gsp.encoding ="UTF-8"32 grails.converters.encoding ="UTF-8"34 grails.views.default.codec = "none" // none, html, base64 35 grails.views.gsp.encoding = "UTF-8" 36 grails.converters.encoding = "UTF-8" 33 37 // enable Sitemesh preprocessing of GSP pages 34 38 grails.views.gsp.sitemesh.preprocess = true … … 37 41 38 42 // Set to false to use the new Grails 1.2 JSONBuilder in the render method 39 grails.json.legacy.builder =false43 grails.json.legacy.builder = false 40 44 // enabled native2ascii conversion of i18n properties files 41 45 grails.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! 43 47 grails.logging.jul.usebridge = true 44 48 // packages to include in Spring bean scanning 45 49 grails.spring.bean.packages = [] 50 51 // request parameters to mask when logging exceptions 52 grails.exceptionresolver.params.exclude = ['password'] 46 53 47 54 // set per-environment serverURL stem for creating absolute links … … 68 75 //} 69 76 70 71 77 error 'org.codehaus.groovy.grails.web.servlet', // controllers 72 73 74 75 76 77 78 79 80 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', 81 87 'net.sf.ehcache.hibernate' 82 88 83 89 warn 'org.mortbay.log' 84 90 } 85 86 87
Note: See TracChangeset
for help on using the changeset viewer.