我是 Jersey Rest Framework 的新手,我写了一个简单的演示来学习这项技能。这是我的问题:我试图用这个 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!!!");
}
}
和我