Class AjaxThymeleafViewResolver

  • All Implemented Interfaces:
    org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware, org.springframework.core.Ordered, org.springframework.web.context.ServletContextAware, org.springframework.web.servlet.ViewResolver

    @Deprecated
    public class AjaxThymeleafViewResolver
    extends ThymeleafViewResolver
    Deprecated.
    Deprecated in 3.0.0. Moved to the org.thymeleaf.spring3.webflow.view package. Will be removed from this package in Thymeleaf 3.1.

    Subclass of ThymeleafViewResolver adding compatibility with AJAX-based events (redirects) in Spring WebFlow.

    Important: Spring WebFlow dependencies are OPTIONAL. If you are not using WebFlow in your application, then you should be using ThymeleafViewResolver directly.

    Since:
    2.0.11
    Author:
    Daniel Fernández
    • Constructor Detail

      • AjaxThymeleafViewResolver

        public AjaxThymeleafViewResolver()
        Deprecated.
    • Method Detail

      • getAjaxHandler

        public org.springframework.js.ajax.AjaxHandler getAjaxHandler()
        Deprecated.

        Return the AJAX handler (from Spring Javascript) used to determine whether a request is an AJAX request or not in views resolved by this resolver.

        An instance of SpringJavascriptAjaxHandler is set by default.

        Returns:
        the AJAX handler.
      • setAjaxHandler

        public void setAjaxHandler​(org.springframework.js.ajax.AjaxHandler ajaxHandler)
        Deprecated.

        Sets the AJAX handler (from Spring Javascript) used to determine whether a request is an AJAX request or not in views resolved by this resolver.

        An instance of SpringJavascriptAjaxHandler is set by default.

        Parameters:
        ajaxHandler - the AJAX handler.