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