Skip to content

Instantly share code, notes, and snippets.

@j-tim
Created October 26, 2020 11:58
Show Gist options
  • Save j-tim/cd974b10c5d0b7f102958ff9ae26afb6 to your computer and use it in GitHub Desktop.
Save j-tim/cd974b10c5d0b7f102958ff9ae26afb6 to your computer and use it in GitHub Desktop.
Simple Rest Controller
package com.example.azure.devops;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class SimpleController {
@GetMapping
public String hello() {
return "Hello World i'm build in Azure Pipelines!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment