I have a filter as below.
public class MyFilter implements Filter
{
protected String _configValue = null;
protected IMyServiceManager _mgr = null;
public MyFilter()
{
}
public MyFilter(IMyServiceManager mgr) {
this._mgr = mgr;
}
public void init(FilterConfig config) throws ServletException
{
this._configValue = config.getInitParameter("someconfigvalue");
}
public void doFilter(ServletRequest paramServletRequest, ServletResponse paramServletResponse, FilterChain paramFilterChain)
throws IOException, ServletException
{
/* some code*/
}
}
I am overriding the in-it method of this filter and registering it as bean in spring.xml.
public class CustomFilter extends MyFilter {
public CustomFilter() {
}
public CustomFilter(IMyServiceManager mgr) {
super(mgr);
// TODO Auto-generated constructor stub
}
public void init(javax.servlet.FilterConfig config) throws javax.servlet.ServletException{
//the value needs to be fetched from configuration file.
this._configValue = "Assign a new vaue to it";
}
}
Registering it as bean in Spring.xml
<bean id="filterChainProxy" class="org.acegisecurity.util.FilterChainProxy">
<property name="filterInvocationDefinitionSource">
<value>
CONVERT_URL_TO_LOWERCASE_BEFORE_COMPARISON
PATTERN_TYPE_APACHE_ANT
/test/input/**= ....,customFilter
</value>
</property>
</bean>
<bean id="customFilter " class="com.test.CustomFilter">
</bean>
But this doesn't seem to be working. The error is as
Removing bean definition: customFilter found in........
Please let me know if it is a correct approach.