类 AbstractFeedView<T extends com.rometools.rome.feed.WireFeed>

    • 方法详细资料

      • renderMergedOutputModel

        protected final void renderMergedOutputModel​(Map<String,​Object> model,
                                                     HttpServletRequest request,
                                                     HttpServletResponse response)
                                              throws Exception
        从类复制的说明: AbstractView
        Subclasses must implement this method to actually render the view.

        The first step will be preparing the request: In the JSP case, this would mean setting model objects as request attributes. The second step will be the actual rendering of the view, for example including the JSP via a RequestDispatcher.

        指定者:
        renderMergedOutputModel 在类中 AbstractView
        参数:
        model - combined output Map (never null), with dynamic values taking precedence over static attributes
        request - current HTTP request
        response - current HTTP response
        抛出:
        Exception - if rendering failed
      • newFeed

        protected abstract T newFeed()
        Create a new feed to hold the entries.
        返回:
        the newly created Feed instance
      • buildFeedMetadata

        protected void buildFeedMetadata​(Map<String,​Object> model,
                                         T feed,
                                         HttpServletRequest request)
        Populate the feed metadata (title, link, description, etc.).

        Default is an empty implementation. Subclasses can override this method to add meta fields such as title, link description, etc.

        参数:
        model - the model, in case meta information must be populated from it
        feed - the feed being populated
        request - in case we need locale etc. Shouldn't look at attributes.
      • buildFeedEntries

        protected abstract void buildFeedEntries​(Map<String,​Object> model,
                                                 T feed,
                                                 HttpServletRequest request,
                                                 HttpServletResponse response)
                                          throws Exception
        Subclasses must implement this method to build feed entries, given the model.

        Note that the passed-in HTTP response is just supposed to be used for setting cookies or other HTTP headers. The built feed itself will automatically get written to the response after this method returns.

        参数:
        model - the model Map
        feed - the feed to add entries to
        request - in case we need locale etc. Shouldn't look at attributes.
        response - in case we need to set cookies. Shouldn't write to it.
        抛出:
        Exception - any exception that occurred during building