Add Spring MVC's org.springframework.ui package to the list of automatic imports

This commit is contained in:
Greg Turnquist 2014-01-06 11:21:55 -06:00 committed by Dave Syer
parent 8fe696944a
commit b5b86d07ba

View File

@ -50,7 +50,8 @@ public class SpringMvcCompilerAutoConfiguration extends CompilerAutoConfiguratio
imports.addStarImports("org.springframework.web.bind.annotation",
"org.springframework.web.servlet.config.annotation",
"org.springframework.web.servlet",
"org.springframework.web.servlet.handler", "org.springframework.http");
"org.springframework.web.servlet.handler", "org.springframework.http",
"org.springframework.ui");
imports.addStaticImport(GroovyTemplate.class.getName(), "template");
}