Example usage for org.springframework.web.bind.support DefaultSessionAttributeStore DefaultSessionAttributeStore

List of usage examples for org.springframework.web.bind.support DefaultSessionAttributeStore DefaultSessionAttributeStore

Introduction

In this page you can find the example usage for org.springframework.web.bind.support DefaultSessionAttributeStore DefaultSessionAttributeStore.

Prototype

DefaultSessionAttributeStore

Source Link

Usage

From source file:org.springframework.data.document.web.bind.annotation.support.HandlerMethodInvoker.java

public HandlerMethodInvoker(HandlerMethodResolver methodResolver, WebBindingInitializer bindingInitializer) {
    this(methodResolver, bindingInitializer, new DefaultSessionAttributeStore(), null, null, null);
}

From source file:org.springframework.data.document.web.servlet.mvc.annotation.support.InterceptingHandlerMethodInvoker.java

public InterceptingHandlerMethodInvoker(HandlerMethodResolver methodResolver,
        WebBindingInitializer bindingInitializer) {
    this(methodResolver, bindingInitializer, new DefaultSessionAttributeStore(), null, null, null, null);
}

From source file:org.springframework.web.method.annotation.ModelFactoryOrderingTests.java

@Before
public void setup() {
    this.sessionAttributeStore = new DefaultSessionAttributeStore();
    this.webRequest = new ServletWebRequest(new MockHttpServletRequest(), new MockHttpServletResponse());
    this.mavContainer = new ModelAndViewContainer();
    this.mavContainer.addAttribute("methods", new ArrayList<String>());
}