Skip to content

Commit

Permalink
possible filter solution
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Sep 14, 2024
1 parent 431e894 commit 564aacb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions psi-probe-core/src/main/java/psiprobe/ProbeSitemeshFilter.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package psiprobe;

import org.sitemesh.builder.SiteMeshFilterBuilder;
import org.sitemesh.config.ConfigurableSiteMeshFilter;

public class ProbeSitemeshFilter extends ConfigurableSiteMeshFilter {

@Override
protected void applyCustomConfiguration(SiteMeshFilterBuilder builder) {
builder.addDecoratorPath("/", "/WEB-INF/jsp/decorators/decorator.htm")
.addDecoratorPath("/*.htm", "/WEB-INF/jsp/decorators/decorator.htm")
.addDecoratorPath("/*system.jsp", "/WEB-INF/jsp/decorators/system.jsp")
.addDecoratorPath("/*application.jsp", "/WEB-INF/jsp/decorators/application.jsp")
.addExcludedPath("/*.xml.htm")
.addExcludedPath("/*.ajax*")
.addExcludedPath("/WEB-INF/*");
}

}

0 comments on commit 564aacb

Please sign in to comment.