public abstract class

AbstractJExcelView

extends AbstractView
java.lang.Object
   ↳ org.springframework.context.support.ApplicationObjectSupport
     ↳ org.springframework.web.context.support.WebApplicationObjectSupport
       ↳ org.springframework.web.servlet.view.AbstractView
         ↳ org.springframework.web.servlet.view.document.AbstractJExcelView

Class Overview

Convenient superclass for Excel document views.

This class uses the JExcelAPI instead of POI. More information on JExcelAPI can be found on their website.

Properties:

  • url (optional): The url of an existing Excel document to pick as a starting point. It is done without localization part nor the .xls extension.

The file will be searched with locations in the following order:

  • [url]_[language]_[country].xls
  • [url]_[language].xls
  • [url].xls

For working with the workbook in the subclass, see Java Excel API site

As an example, you can try this snippet:

 protected void buildExcelDocument(
      Map<String, Object> model, WritableWorkbook workbook,
 		HttpServletRequest request, HttpServletResponse response) {

 	 if (workbook.getNumberOfSheets() == 0) {
 	     workbook.createSheet("Spring", 0);
   }
 
 	 WritableSheet sheet = workbook.getSheet("Spring");
 	 Label label = new Label(0, 0, "This is a nice label");
 	 sheet.addCell(label);
 }
The use of this view is close to the AbstractExcelView class, just using the JExcel API instead of the Apache POI API.

Summary

[Expand]
Inherited Constants
From class org.springframework.web.servlet.view.AbstractView
[Expand]
Inherited Fields
From class org.springframework.context.support.ApplicationObjectSupport
From interface org.springframework.web.servlet.View
Public Constructors
AbstractJExcelView()
Default Constructor.
Public Methods
void setUrl(String url)
Set the URL of the Excel workbook source, without localization part nor extension.
Protected Methods
abstract void buildExcelDocument(Map<StringObject> model, WritableWorkbook workbook, HttpServletRequest request, HttpServletResponse response)
Subclasses must implement this method to create an Excel Workbook document, given the model.
boolean generatesDownloadContent()
Return whether this view generates download content (typically binary content like PDF or Excel files).
Workbook getTemplateSource(String url, HttpServletRequest request)
Create the workbook from an existing XLS document.
final void renderMergedOutputModel(Map<StringObject> model, HttpServletRequest request, HttpServletResponse response)
Renders the Excel view, given the specified model.
[Expand]
Inherited Methods
From class org.springframework.web.servlet.view.AbstractView
From class org.springframework.web.context.support.WebApplicationObjectSupport
From class org.springframework.context.support.ApplicationObjectSupport
From class java.lang.Object
From interface org.springframework.beans.factory.BeanNameAware
From interface org.springframework.context.ApplicationContextAware
From interface org.springframework.web.context.ServletContextAware
From interface org.springframework.web.servlet.View

Public Constructors

public AbstractJExcelView ()

Default Constructor. Sets the content type of the view to "application/vnd.ms-excel".

Public Methods

public void setUrl (String url)

Set the URL of the Excel workbook source, without localization part nor extension.

Protected Methods

protected abstract void buildExcelDocument (Map<StringObject> model, WritableWorkbook workbook, HttpServletRequest request, HttpServletResponse response)

Subclasses must implement this method to create an Excel Workbook document, given the model.

Parameters
model the model Map
workbook the Excel workbook to complete
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.
Throws
Exception in case of failure

protected boolean generatesDownloadContent ()

Return whether this view generates download content (typically binary content like PDF or Excel files).

The default implementation returns false. Subclasses are encouraged to return true here if they know that they are generating download content that requires temporary caching on the client side, typically via the response OutputStream.

protected Workbook getTemplateSource (String url, HttpServletRequest request)

Create the workbook from an existing XLS document.

Parameters
url the URL of the Excel template without localization part nor extension
request current HTTP request
Returns
  • the template workbook
Throws
Exception in case of failure

protected final void renderMergedOutputModel (Map<StringObject> model, HttpServletRequest request, HttpServletResponse response)

Renders the Excel view, given the specified model.

Parameters
model combined output Map (never null), with dynamic values taking precedence over static attributes
request current HTTP request
response current HTTP response
Throws
Exception