|

Spring Boot for Web Development

package com.example.demo;

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

@RestController
public class HelloController {
    @GetMapping("/api/hello")
    public Greeting hello() {
        return new Greeting("Hello from Spring Boot");
    }

    static record Greeting(String message) {}
}

Similar Posts