Package org.springframework.web.servlet.support

Examples of org.springframework.web.servlet.support.ServletUriComponentsBuilder.replacePath()


    }

    if (requestMappingPatterns.contains(pattern.substring(0, pattern.length() - 1))) {
      ServletUriComponentsBuilder builder = ServletUriComponentsBuilder.fromRequest(request);
      String path = builder.build().getPath();
      builder.replacePath(path.substring(0, path.length() - 1));
      String location = builder.build().toString();

      response.setStatus(HttpStatus.MOVED_PERMANENTLY.value());
      response.setHeader("Location", location);
      return false;
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.