I want to use "global" HTTP filters.

Therefor, I edited deploy/jboss-web.deployer/conf/web.xml and added:

<filter>
    <filter-name>StatisticsFilterHitCount</filter-name>
    <filter-class>myapp.StatisticsFilterHitCount</filter-class>
</filter>

<filter-mapping>
    <filter-name>StatisticsFilterHitCount</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

Now, when I start the server, not a single artifact can be deployed. A huge exception is logged on each deployment attempt. Sorry, can't paste it here. I suppose, at the time of deployment, the filter class is not present yet.

So, where (and how) do I have to deploy such filter globally?

Currently, it's in applications/5apps, the packaging is .war.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Look at Jboss/server/default/deploy/jboss-web.deployer/conf/web.xml. There is even an example of global CommonHeadersFilter.

But you would have to place the code in some jar under JBoss/server/default/lib. JBoss can't peek up the code in the war at web container's initialization process.

link|improve this answer
Great! It worked! In my case, the right destination for the artifact was server/dorun/lib/. Oh, and I had to change the packaging to jar. – Ivivi Vavava Jan 12 at 8:11
feedback

If the class file is missing , just build it in . There should be a class with the name StatisticsFilterHitCount inside the war under myapp package which implements the Filter interface , overrides

           doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws ServletException, IOException 

           init(FilterConfig filterConfig)

           public void destroy()

and does whatever it is meant to do . Check for this .

link|improve this answer
Yes, this class id definitely there, I wrote it. So that's not the problem ;) As I mentioned in the question: at the time when deploy/jboss-web.deployer/conf/web.xml is processed, my artifact (containing this class) isn't yet loaded (I assume). – Ivivi Vavava Jan 10 at 8:43
@IviviVavava Sorry - can't say anything more without seeing the trace ... – Aravind A Jan 10 at 8:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.