Newer
Older
NemophilaServer / src / main / java / org / ntlab / nemophila / resources / HelloWorld.java
Naoya Nitta on 2 May 2023 271 bytes Initial commit!!
package org.ntlab.nemophila.resources;

import org.springframework.stereotype.Component;

import javax.ws.rs.GET;
import javax.ws.rs.Path;

@Component
@Path("/hello")
public class HelloWorld {
    @GET
    public String getHello() {
        return "Hello World";
    }
}