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.mohit.program.controller.DefaultController.java

@RequestMapping(method = RequestMethod.GET)
public String doGet() {
    return "index";
}

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

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

From source file:cloud.simple.serviceB.controller.UserController.java

@RequestMapping(value = "/user", method = RequestMethod.GET)
public String readUserInfo() {
    return "Result from simpleserviceB";
}

From source file:com.onclave.testbench.RESTful.AngularJS.SImpleRESTful.java

@RequestMapping(value = "/simpleRESTful", method = RequestMethod.GET)
public String serveAngularView() {
    return "/angularJS/SimpleRESTful";
}

From source file:se.etimo.etimocoin.ApiController.java

@ResponseBody
@RequestMapping(method = RequestMethod.GET)
synchronized GameGrid boardState() {

    return GameGrid.getGrid();

}

From source file:uk.co.elitestarbase.website.web.PageStarSystemController.java

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

From source file:com.solinad.modulos.inicio.inicio.java

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

From source file:mum.edu.controller.CourseSwitchController.java

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

From source file:com.wordpress.paulocorreadev.springram.controller.UsuariosController.java

@RequestMapping(value = "/register", method = RequestMethod.GET)
public String exibirForm() {
    return "usuarios/cadastrar";
}

From source file:com.tsg.apiquery.ApiController.java

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

}