@RestController | |
@RequestMapping("/api/v1/hello") | |
public class HelloSpringController { | |
@GetMapping | |
public String helloWorld() { | |
return "Hello World"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment