我找到了解决方案,但我不明白为什么会这样,但另一个却没有...
问题是,当我将ServletRequest转换为HttpServletReuqest并将请求传递给其中一个Service方法时,它就会停在那里。它试图抛出错误,我不确定。
当我在控制器中使用它时,服务方法工作正常..(当我将相同的代码复制到过滤器类时,问题已得到解决..但我不明白为什么它会破坏,当我在使用它时该服务,但它在我的servlet过滤器类中有效)
这是我的代码:
public class AdminFilter extends GenericFilterBean {
private final static Logger LOGGER = LogManager.getLogger("alog");
@Autowired
AccessService accessService;
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain)
throws IOException, ServletException {
HttpServletRequest httpRequest = (HttpServletRequest) request;
if(request == null) {
LOGGER.trace("request is null... why?"); //it was not null
}
if(httpRequest == null) {
LOGGER.trace("httpRequest(after the cast) is null... why?");//it was not null
}
try {
if (accessService.isAdmin(httpRequest)) {
LOGGER.trace("User is Admin");
filterChain.doFilter(request, response);
}
}
catch (Exception E) {
LOGGER.error("Request is empty : " + E.getStackTrace());//stack trace just gets null exception for not having a sepcific error handling
}
}
这是我的服务层方法:
public boolean isAdmin(HttpServletRequest request) {
LOGGER.trace("checking if the user is admin"); //this is never triggered.
String user = request.getRemoteUser();
//some logic here
if (//some logic here) {
//some logic here
return true;
}
else {
return false;
}
}
因此代码在遇到“isAdmin(request)”
时会中断但如果我不使用自动装配的服务方法,它可以正常工作..
如果我只是将确切的代码复制并粘贴到我的AdminFilter类中并使用像
这样的代码,它就可以工作if (isAdmin(httpRequest))
//instead of
if (accessService.isAdmin(httpRequest))
我知道我有解决方案..但我真的想明白为什么......
答案 0 :(得分:0)
这是你的服务autowird的正确的impl?调试并查看服务是否为null或其他impl?