I have a system that was until this point in time generating reports using Apache Velocity and ZPL. We do this by populating our application's data model into an instance of Apache Velocity's AbstractContext and then merging this context instance with a Velocity template.
Now we have come across a use case wherein we need to generate MS-Excel documents in addition to the aforementioned Velocity documents. My question is if there exists a common-ground between Apache Velocity and JXLS such that i can easily convert between an Apache Velocity AbstractContext and JXLS's model(either of POJO or Map<String, Object>).
Is this even possible and does there exist a wrapper that already does this ?
p1nG