Skip to content

Instantly share code, notes, and snippets.

@jaocamp
Created June 30, 2017 01:09
Show Gist options
  • Save jaocamp/4d68f3ccfc04a29e98d55348c4c271a5 to your computer and use it in GitHub Desktop.
Save jaocamp/4d68f3ccfc04a29e98d55348c4c271a5 to your computer and use it in GitHub Desktop.
Controller Post Spring MVC Diego Brener
package br.com.exemplo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class ExemploController {
@GetMapping("/exemplo/pagina")
public String exemplo(){
return "exemplo";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment