GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / web / org / codehaus / groovy / grails / web / context / GrailsContextLoaderListener.java
blob3677609c8b9fd8f0c89ad1c52554b48e4284cf62
1 /**
2 *
3 */
4 package org.codehaus.groovy.grails.web.context;
6 import org.springframework.web.context.ContextLoader;
7 import org.springframework.web.context.ContextLoaderListener;
9 /**
10 * Extends the Spring default ContextLoader to load GrailsApplicationContext
12 * @author Graeme Rocher
15 public class GrailsContextLoaderListener extends ContextLoaderListener {
17 protected ContextLoader createContextLoader() {
18 return new GrailsContextLoader();