I am using Spring. A properties placeholder is used to access all properties in the application. I would like to use it also in JSP pages.
I found some solutions using Spring-MVC but I do not use it. I uses a org.apache.jasper.servlet.JspServlet
that I could overwrite in my web.xml if necessary.
Is it possible to somehow expose the properties to the JSP code without having to overwrite the ServletContextListener
class ? (like it was done in this article)