|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use View | |
org.springframework.web.servlet | Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework. |
org.springframework.web.servlet.view | Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations. |
org.springframework.web.servlet.view.document | Support classes for document generation, providing View implementations for PDF and Excel. |
org.springframework.web.servlet.view.freemarker | Support classes for the integration of FreeMarker as Spring web view technology. |
org.springframework.web.servlet.view.tiles | Support classes for the integration of Tiles (included in Struts) as Spring web view technology. |
org.springframework.web.servlet.view.velocity | Support classes for the integration of Velocity as Spring web view technology. |
org.springframework.web.servlet.view.xslt | Support classes for XSLT, providing a View implementation for XSLT stylesheets. |
Uses of View in org.springframework.web.servlet |
Methods in org.springframework.web.servlet that return View | |
View |
ViewResolver.resolveViewName(java.lang.String viewName,
java.util.Locale locale)
Resolve the given view by name. |
View |
ModelAndView.getView()
Return the View object, or null if we are using a view name to be resolved by the DispatcherServlet via a ViewResolver. |
Methods in org.springframework.web.servlet with parameters of type View | |
void |
ModelAndView.setView(View view)
Set a View object for this ModelAndView. |
Constructors in org.springframework.web.servlet with parameters of type View | |
ModelAndView(View view)
Convenient constructor when there is no model data to expose. |
|
ModelAndView(View view,
java.util.Map model)
Creates new ModelAndView given a View object and a model. |
|
ModelAndView(View view,
java.lang.String modelName,
java.lang.Object modelObject)
Convenient constructor to take a single model object. |
Uses of View in org.springframework.web.servlet.view |
Classes in org.springframework.web.servlet.view that implement View | |
class |
AbstractUrlBasedView
Abstract base class for URL-based views. |
class |
AbstractView
Abstract view superclass. |
class |
InternalResourceView
Wrapper for a JSP or other resource within the same web application. |
class |
JstlView
Specialization of InternalResourceView for JSTL pages, i.e. |
class |
RedirectView
View that redirects to an internal or external URL, exposing all model attributes as HTTP query parameters. |
Methods in org.springframework.web.servlet.view that return View | |
protected View |
XmlViewResolver.loadView(java.lang.String viewName,
java.util.Locale locale)
|
protected View |
UrlBasedViewResolver.loadView(java.lang.String viewName,
java.util.Locale locale)
|
protected View |
ResourceBundleViewResolver.loadView(java.lang.String viewName,
java.util.Locale locale)
|
View |
BeanNameViewResolver.resolveViewName(java.lang.String viewName,
java.util.Locale locale)
|
View |
AbstractCachingViewResolver.resolveViewName(java.lang.String viewName,
java.util.Locale locale)
|
protected abstract View |
AbstractCachingViewResolver.loadView(java.lang.String viewName,
java.util.Locale locale)
Subclasses must implement this method. |
Uses of View in org.springframework.web.servlet.view.document |
Classes in org.springframework.web.servlet.view.document that implement View | |
class |
AbstractExcelView
Convenient superclass for Excel-document views. |
class |
AbstractPdfView
Abstract superclass for PDF views, using Bruno Lowagie's iText package. |
Uses of View in org.springframework.web.servlet.view.freemarker |
Classes in org.springframework.web.servlet.view.freemarker that implement View | |
class |
FreeMarkerView
View using the FreeMarker template engine. |
Uses of View in org.springframework.web.servlet.view.tiles |
Classes in org.springframework.web.servlet.view.tiles that implement View | |
class |
TilesJstlView
Specialization of TilesView for JSTL pages, i.e. |
class |
TilesView
View implementation that retrieves a Tiles definition. |
Uses of View in org.springframework.web.servlet.view.velocity |
Classes in org.springframework.web.servlet.view.velocity that implement View | |
class |
VelocityView
View using the Velocity template engine. |
Methods in org.springframework.web.servlet.view.velocity that return View | |
protected View |
VelocityViewResolver.loadView(java.lang.String viewName,
java.util.Locale locale)
|
Uses of View in org.springframework.web.servlet.view.xslt |
Classes in org.springframework.web.servlet.view.xslt that implement View | |
class |
AbstractXsltView
Convenient superclass for views rendered using an XSLT stylesheet. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |