Created
October 26, 2020 11:58
-
-
Save j-tim/cd974b10c5d0b7f102958ff9ae26afb6 to your computer and use it in GitHub Desktop.
Simple Rest Controller
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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