Skip to content

Instantly share code, notes, and snippets.

@singh1114
Created October 12, 2019 22:38
Show Gist options
  • Save singh1114/0aa7c518315f1009f5c7825e65f30e1a to your computer and use it in GitHub Desktop.
Save singh1114/0aa7c518315f1009f5c7825e65f30e1a to your computer and use it in GitHub Desktop.
package io.singh1114.springboottut.status;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class StatusController {
@RequestMapping("status")
public String tellStatus() {
return "We are up!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment