Taylor Jones
Taylor Jones
For anyone else that is having this issue, here's a workaround. Specify your blockReplacement however you like (in this case, we had to prepend a JSP context root onto the...
The goal was to append the `${contextPath}` prefix to all referenced assets. In the application, this would be a JSP variable filled in at runtime with the absolute root path...
Yeah, I recently did some investigation on another plugin that had issues with PR Harmony for #40. I strongly suspect this will wind up being the same problem. If other...
So this isn't possible in the latest release, for good reason. There are two ways that patterns can be matched: by explicit class association and by the dot-path. In the...
I think this is a good feature to add. It might be a little bit of work though, the current endpoints just do an overlay, so the data never indicates...
So, this library isn't guaranteed to be faster in all cases. If your server can handle the memory load of using vanilla POI, it might make sense to use it....
Vanilla POI *is* going to be faster because it buffers almost everything into memory, so if performance is the main goal you should not be using this library. The intent...
Unfortunately, no. The SST is where non-inline strings actually reside, so they have to be loaded in some form or another. High-cardinality sheets are going to be problematic there because...
Couple of potential areas that might be causing issues: * All pointers to file positions are kept in memory, so if you have a giant sheet with millions of SST...
The SST is tied to a specific workbook and externalizing the cache would make it possible to leak memory and files. The feature you're asking for would be need to...