Examples of ServletWebRequest


Examples of org.springframework.web.context.request.ServletWebRequest

    }

    public boolean matches(HttpServletRequest request) {
        List<MediaType> httpRequestMediaTypes;
        try {
            httpRequestMediaTypes = contentNegotiationStrategy.resolveMediaTypes(new ServletWebRequest(request));
        }
        catch (HttpMediaTypeNotAcceptableException e) {
            logger.debug("Failed to parse MediaTypes, returning false", e);
            return false;
        }
View Full Code Here

Examples of org.springframework.web.context.request.ServletWebRequest

  @Override
  protected ModelAndView doResolveException(HttpServletRequest request, HttpServletResponse response, Object handler,
      Exception exception) {
   
    ModelAndView modelAndView = null;
    ServletWebRequest webRequest = null;
    ApiError error = null;
    try {
      webRequest = new ServletWebRequest(request, response);
     
      if (exception instanceof BusinessException) {
        error = handleException((BusinessException)exception);
      } else if (exception instanceof BadRequestException) {
        error = handleException((BadRequestException)exception);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.