Package org.springframework.samples.mvc.data.custom

Examples of org.springframework.samples.mvc.data.custom.CustomArgumentController


public class CustomArgumentControllerTests {
  private MockMvc mockMvc;

  @Before
  public void setup() throws Exception {
    this.mockMvc = standaloneSetup(new CustomArgumentController())
        .setCustomArgumentResolvers(new CustomArgumentResolver()).build();
  }
View Full Code Here

TOP

Related Classes of org.springframework.samples.mvc.data.custom.CustomArgumentController

Copyright © 2018 www.massapicom. 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.