Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
package org.smarttechie.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DemoController {
@GetMapping
public String hello() {
return "Welcome to the Springboot Buildpacks!!. Get rid of Dockerfile hassels.";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment