Skip to content

Instantly share code, notes, and snippets.

@talfco
Created March 31, 2019 12:56
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 talfco/9cc9fce852f26c55e5532409314b9328 to your computer and use it in GitHub Desktop.
Save talfco/9cc9fce852f26c55e5532409314b9328 to your computer and use it in GitHub Desktop.
package net.cloudburo.app.controller;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
return "Greetings from Spring Flowable Camel Boot!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment