Skip to content

Instantly share code, notes, and snippets.

@netodevel
Created December 30, 2016 15:36
Show Gist options
  • Save netodevel/2467d120ddf94d3840962fac03f1f9ae to your computer and use it in GitHub Desktop.
Save netodevel/2467d120ddf94d3840962fac03f1f9ae to your computer and use it in GitHub Desktop.
package com.example;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class SalarioMinimoController {
@GetMapping("/salarios")
@ResponseBody
public String index() {
return "index";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment