我有下一个配置(简短版本)
<?xml version="1.0" encoding="UTF-8"?>
<atlassian-plugin key="${atlassian.plugin.key}" name="${project.name}"
<rest name="xObject" i18n-name-key="x-object.name" key="business-object" path="/xObject"
version="1.0">
<description key="x-object.description">The xObject Smart Search REST Plugin</description>
</rest>
</atlassian-plugin>
我尝试访问
@Path("/xObject")
public class BusinessObject {
@GET
@AnonymousAllowed
@Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
public Response get(@QueryParam("searchKeys") String searchKeys) {//...
使用
http://localhost:2990/jira/rest/xObject/1.0/xObject?searchKeys=X_
但得到404。
如何访问?
或者日志中可能有什么?看到没有错误。