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
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<String, Object> 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<String, Object> model, HttpServletRequest request, HttpServletResponse response)
Renders the Excel view, given the specified model.
|
[Expand]
Inherited Methods |
From class
org.springframework.web.servlet.view.AbstractView
void
|
addStaticAttribute(String name, Object value)
Add static data to this view, exposed in each view.
|
RequestContext
|
createRequestContext(HttpServletRequest request, HttpServletResponse response, Map<String, Object> model)
Create a RequestContext to expose under the specified attribute name.
|
ByteArrayOutputStream
|
createTemporaryOutputStream()
Create a temporary OutputStream for this view.
|
void
|
exposeModelAsRequestAttributes(Map<String, Object> model, HttpServletRequest request)
Expose the model objects in the given map as request attributes.
|
boolean
|
generatesDownloadContent()
Return whether this view generates download content
(typically binary content like PDF or Excel files).
|
Map<String, Object>
|
getAttributesMap()
Allow Map access to the static attributes of this view,
with the option to add or override specific entries.
|
String
|
getBeanName()
Return the view's name.
|
String
|
getContentType()
Return the content type for this view.
|
String
|
getRequestContextAttribute()
Return the name of the RequestContext attribute, if any.
|
Map
|
getStaticAttributes()
Return the static attributes for this view.
|
void
|
prepareResponse(HttpServletRequest request, HttpServletResponse response)
Prepare the given response for rendering.
|
void
|
render(Map<String, ?> model, HttpServletRequest request, HttpServletResponse response)
Prepares the view given the specified model, merging it with static
attributes and a RequestContext attribute, if necessary.
|
abstract
void
|
renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request, HttpServletResponse response)
Subclasses must implement this method to actually render the view.
|
void
|
setAttributes(Properties attributes)
Set static attributes for this view from a
java.util.Properties object.
|
void
|
setAttributesCSV(String propString)
Set static attributes as a CSV string.
|
void
|
setAttributesMap(Map<String, ?> attributes)
Set static attributes for this view from a Map.
|
void
|
setBeanName(String beanName)
Set the view's name.
|
void
|
setContentType(String contentType)
Set the content type for this view.
|
void
|
setRequestContextAttribute(String requestContextAttribute)
Set the name of the RequestContext attribute for this view.
|
String
|
toString()
|
void
|
writeToResponse(HttpServletResponse response, ByteArrayOutputStream baos)
Write the given temporary OutputStream to the HTTP response.
|
|
From class
org.springframework.web.context.support.WebApplicationObjectSupport
|
From class
org.springframework.context.support.ApplicationObjectSupport
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
org.springframework.beans.factory.BeanNameAware
abstract
void
|
setBeanName(String name)
Set the name of the bean in the bean factory that created this bean.
|
|
From interface
org.springframework.context.ApplicationContextAware
|
From interface
org.springframework.web.context.ServletContextAware
abstract
void
|
setServletContext(ServletContext servletContext)
Set the ServletContext that this object runs in.
|
|
From interface
org.springframework.web.servlet.View
abstract
String
|
getContentType()
Return the content type of the view, if predetermined.
|
abstract
void
|
render(Map<String, ?> model, HttpServletRequest request, HttpServletResponse response)
Render the view given the specified model.
|
|
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<String, Object> 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. |
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 |
protected
final
void
renderMergedOutputModel
(Map<String, Object> 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 |