List of usage examples for org.springframework.web.filter CommonsRequestLoggingFilter setIncludeQueryString
public void setIncludeQueryString(boolean includeQueryString)
From source file:com.sothawo.taboo2.Taboo2Application.java
@Bean public CommonsRequestLoggingFilter requestLoggingFilter() { CommonsRequestLoggingFilter crlf = new CommonsRequestLoggingFilter(); crlf.setIncludeClientInfo(true);/*from w ww.j a va2s . co m*/ crlf.setIncludeQueryString(true); crlf.setIncludePayload(true); return crlf; }