use of org.springframework.web.servlet.view.AbstractUrlBasedView in project grails-core by grails.
the class GroovyPageViewResolver method createJstlView.
protected View createJstlView(String viewName) throws Exception {
AbstractUrlBasedView view = buildView(viewName);
view.setApplicationContext(getApplicationContext());
view.afterPropertiesSet();
return view;
}
Aggregations