Package org.springframework.web.servlet.view.velocity

Examples of org.springframework.web.servlet.view.velocity.VelocityViewResolver.resolveViewName()


    return "Hello World";
  }

  private MockHttpServletResponse render(String viewName) throws Exception {
    VelocityViewResolver resolver = this.context.getBean(VelocityViewResolver.class);
    View view = resolver.resolveViewName(viewName, Locale.UK);
    assertThat(view, notNullValue());
    HttpServletRequest request = new MockHttpServletRequest();
    request.setAttribute(RequestContext.WEB_APPLICATION_CONTEXT_ATTRIBUTE,
        this.context);
    MockHttpServletResponse response = new MockHttpServletResponse();
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.