forked from fanruan/demo-simple-config
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
754 B
24 lines
754 B
package com.fr.conf.demo.simple; |
|
|
|
import com.fr.conf.demo.simple.account.PluginSimpleConfig; |
|
import com.fr.decision.fun.impl.AbstractEmbedRequestFilterProvider; |
|
|
|
import javax.servlet.FilterChain; |
|
import javax.servlet.FilterConfig; |
|
import javax.servlet.ServletException; |
|
import javax.servlet.http.HttpServletRequest; |
|
import javax.servlet.http.HttpServletResponse; |
|
import java.io.IOException; |
|
|
|
public class PluginInitializeFilterBridge extends AbstractEmbedRequestFilterProvider { |
|
|
|
@Override |
|
public void init(FilterConfig filterConfig) { |
|
PluginSimpleConfig.getInstance(); |
|
} |
|
|
|
@Override |
|
public void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain filterChain) throws IOException, ServletException { |
|
|
|
} |
|
}
|
|
|