Skip to content

Instantly share code, notes, and snippets.

@tasdemirbahadir
Created April 7, 2020 15:00
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 tasdemirbahadir/8ed33e53c23d2ac0b91bcb5f0dd7779e to your computer and use it in GitHub Desktop.
Save tasdemirbahadir/8ed33e53c23d2ac0b91bcb5f0dd7779e to your computer and use it in GitHub Desktop.
Test controller for the quality measurement sample project
@RestController
@RequestMapping("test")
public class TestController {
private static final String TEST_MESSAGE = "Hello Sonar!";
@GetMapping
public String getTestMessage() {
return TEST_MESSAGE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment