Merge pull request #3 from nitta-lab-2021/HelloWorld
HelloWorldを作成しました。
commit e8b3c8d4b432c79a8216623723f3e5f693afebca
2 parents 0fa39d3 + 2967920
赤木元基 authored on 7 May 2021
Showing 1 changed file
View
16
src/main/java/org/ntlab/acanthus_server/resources/HelloWorld.java 0 → 100644
package org.ntlab.acanthus_server.resources;
 
import org.springframework.stereotype.Component;
 
import javax.ws.rs.GET;
import javax.ws.rs.Path;
 
@Component
@Path("hello_world")
public class HelloWorld {
@GET
public String getHelloWorld() {
return "Hello World";
}
}