package com.ntlab.irisserver.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 "12/22-09:59 ログ出力3"; } }