Package org.springframework.mock.web

Examples of org.springframework.mock.web.MockHttpServletResponse.sendRedirect()


        .match(getForwardedUrlStubMvcResult("/api/resource/1"));
  }

  private StubMvcResult getRedirectedUrlStubMvcResult(String redirectUrl) throws Exception {
    MockHttpServletResponse response = new MockHttpServletResponse();
    response.sendRedirect(redirectUrl);
    StubMvcResult mvcResult = new StubMvcResult(null, null, null, null, null, null, response);
    return mvcResult;
  }

  private StubMvcResult getForwardedUrlStubMvcResult(String forwardedUrl) {
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.