I wonder if its safe ( no probability for deadlock ) to use static method inside J2ee web filters or I should use instance methods ? I have the following doFilter Method
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
HttpServletRequest httpServletRequest = (HttpServletRequest) request;
HttpServletResponse httpServletResponse = (HttpServletResponse) response;
String contextPath = httpServletRequest.getContextPath();
if ((httpServletRequest.getRequestedSessionId() != null &&
!httpServletRequest.isRequestedSessionIdValid()) || (loginBean == null || loginBean.getUserId() == -1)) {
httpServletResponse.sendRedirect(contextPath + Navigation.getLoginURL());
} else {
chain.doFilter(request, response);
}
}
Where
Navigation.getLoginURL()
is a static method. Could this possibly lead to deadlock ?
The point of this being a static method is there's no dependency on the state of the Filter instance; the login url is the same across the application. Since there is no state to protect there is no reason to lock anything.
Having a call in a static method to some thing that locks (like System.out.println) doesn't mean your code will deadlock. Java EE code implementing the api servlets and filters should avoid doing a lot of locking because it needs to support a high level of concurrency.
Looking at this from the implementer's point of view should help you decide what you can call safely, see this quote from Java Concurrency in Practice, section 4.5.1 (Interpreting Vague Documentation):