1

I need to export table data to excel using display tag . I am using spring mvc. Can anyone please explain me how to do this with sample example?

Sean Patrick Floyd
  • 292,901
  • 67
  • 465
  • 588
ashu
  • 11
  • 1
  • 2

1 Answers1

3

I'd say Display Tag is getting old. Exporting binary data through a JSP tag library is not really the way to do things anymore.

Instead, you should have a look at the Spring MVC way to serve dynamic Excel documents which uses Apache POI (sorry @danny.lesnik, so maybe you want to undelete your answer :-) ) or jExcelApi

Sean Patrick Floyd
  • 292,901
  • 67
  • 465
  • 588