jslt
jslt copied to clipboard
How to read java constant or property file from jslt file
Is there a way to read java constant or property file from jslt file. To avoid hardcoding in jslt file.
You don't have direct access to any Java concepts from JSLT, but the processor API allows you to pass parameters in to the transform. Those are available as variables inside the transform. So that's probably the easiest way for you to do this.
Thank you