Package org.springframework.web.method.support

Examples of org.springframework.web.method.support.ModelAndViewContainer.containsAttribute()


  public void modelAttributeMethodWithNullReturnValue() throws Exception {
    ModelFactory modelFactory = createModelFactory("nullModelAttr");
    ModelAndViewContainer mavContainer = new ModelAndViewContainer();
    modelFactory.initModel(webRequest, mavContainer, handleMethod);

    assertTrue(mavContainer.containsAttribute("name"));
    assertNull(mavContainer.getModel().get("name"));
  }

  @Test
  public void sessionAttribute() throws 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.