All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.carlopantaleo.jmodel.hello.HelloController Maven / Gradle / Ivy

There is a newer version: 0.1.5
Show newest version
package com.github.carlopantaleo.jmodel.hello;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @RequestMapping("/")
    public String index() {
        return "Greetings from Spring Boot!";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy