Skip to content

Instantly share code, notes, and snippets.

@klaud81
Created March 27, 2019 01:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klaud81/154fb65b8fe5c604dd588b15ff1688c5 to your computer and use it in GitHub Desktop.
Save klaud81/154fb65b8fe5c604dd588b15ff1688c5 to your computer and use it in GitHub Desktop.
spring-writer-rest
@RestController
public class WelcomeController {
private WelcomeService service = new WelcomeService();
@RequestMapping("/welcome")
public String welcome() {
return service.retrieveWelcomeMessage();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment