私はJerseyRestFrameworkを初めて使用し、このスキルを学ぶための簡単なデモを作成しました。これが私の問題です:私はこのURLで私のhelloworldに到達しようとしました---
http://localhost:8080/PayInterface/query/helloworld
しかし、動作しませんでした。私が間違ったことを教えてください。私はクラスを書きました:
@Component
//Declaring that all it will handle all requests starting by /TestCaseDto
@Path("query")
public class QueryApi {
@Path("/helloworld")
@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
public String test(){
return new String("Hello World!!!");
}
}
そして私