in web.xml
JSPConfiguration<
You have access to it with
servletContext.getJspConfigDescriptor().getJspPropertyGroups();returning a
Collectionwhich has anadd(JspPropertyGroupDescriptor)method.JspPropertyGroupDescriptoris an interface which you have to implement. You're probably better off having a partialweb.xmland partial java configuration.Sotirios Delimanolis Apr 24 at 16:07