--- grails: profile: rest-api codegen: defaultPackage: com.lemans.correspondence spring: transactionManagement: proxies: false info: app: name: '@info.app.name@' version: '@info.app.version@' grailsVersion: '@info.app.grailsVersion@' spring: groovy: template: check-template-location: false # Spring Actuator Endpoints are Disabled by Default endpoints: enabled: false jmx: enabled: true --- grails: mime: disable: accept: header: userAgents: - Gecko - WebKit - Presto - Trident types: json: - application/json - text/json hal: - application/hal+json - application/hal+xml xml: - text/xml - application/xml atom: application/atom+xml css: text/css csv: text/csv js: text/javascript rss: application/rss+xml text: text/plain all: '*/*' urlmapping: cache: maxsize: 1000 controllers: defaultScope: singleton converters: encoding: UTF-8 --- hibernate: naming_strategy: org.hibernate.cfg.DefaultNamingStrategy cache: queries: false use_second_level_cache: false use_query_cache: false region.factory_class: org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory format_sql: true dialect: org.hibernate.dialect.SQLServer2008Dialect dataSource: dbCreate: none pooled: true jmxExport: true driverClassName: net.sourceforge.jtds.jdbc.Driver environments: development: dataSource: url: jdbc:jtds:sqlserver://dev-dbprod02vm/AppSecurity username: appsecurity_user password: DevPassword1 logSql: true test: dataSource: url: jdbc:jtds:sqlserver://dev-dbprod02vm/AppSecurity username: appsecurity_user password: DevPassword1 logSql: true production: dataSource: jndiName: java:comp/env/jdbc/appSecurity logSql: false --- --- server: contextPath: /correspondence-service management: context_path: /admin