Example usage for org.springframework.web.bind.annotation RequestMethod GET

List of usage examples for org.springframework.web.bind.annotation RequestMethod GET

Introduction

In this page you can find the example usage for org.springframework.web.bind.annotation RequestMethod GET.

Prototype

RequestMethod GET

To view the source code for org.springframework.web.bind.annotation RequestMethod GET.

Click Source Link

Usage

From source file:com.onclave.testbench.Security.StoredVariables.SimpleSecurityController.java

@RequestMapping(value = "/user/security", method = RequestMethod.GET)
public String userSecurityView() {
    return "/security/user";
}

From source file:com.feechan.controller.IndexController.java

@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(ModelMap model) {
    return "index";
}

From source file:com.sapito.activofijo.ActivoFijoController.java

@RequestMapping(value = "activofijo", method = RequestMethod.GET)
public String index(Model model) {
    return "ActivoFijo/indexactivofijo";
}

From source file:com.swcguild.addressbookmvc.controller.StatsController.java

@RequestMapping(value = "/stats", method = RequestMethod.GET)
public String displayStatsPage() {
    return "stats";
}

From source file:org.cartno.web.LicenseController.java

@RequestMapping(value = "/license/select", method = RequestMethod.GET)
public void select(Model model) {
    List<Area> area = fetchingService.findAllAreas();
    model.addAttribute(area);/*from  w  ww .j  ava  2 s  .  c o m*/
}

From source file:com.stitchgalaxy.sg_manager_web.LoginController.java

@RequestMapping(value = UrlConstants.URL_LOGIN, method = RequestMethod.GET)
public String login(ModelMap model) {

    UrlConstants.AddUrlConstants(model);

    return "login";

}

From source file:controler.rt.HelloController.java

@RequestMapping(method = RequestMethod.GET)
public String printWelcome(ModelMap model) {

    model.addAttribute("message", "Spring 3 MVC Hello World");
    return "hello";

}

From source file:ru.smsl.webkrona.controllers.WizardController.java

@RequestMapping(value = "/wizard", method = RequestMethod.GET)
public String wizard() {
    return "wizard";
}

From source file:com.seabee.snapdragon.controller.SecurityNavigation.java

@RequestMapping(value = "/user-login", method = RequestMethod.GET)
public ModelAndView loginForm() {
    return new ModelAndView("login-form");
}

From source file:pl.wedjaa.tutorials.examples.config.Main.java

@RequestMapping(method = RequestMethod.GET)
public String printConfig(ModelMap model) {
    model.addAttribute("message", "Hello Spring MVC Framework!");

    return "index";
}