我试图在jira插件中编写一个小工具,即使有一个非常简单的问题,我也遇到了一些问题。目前我正试图从我写的一个简单的java类中获得响应。以下代码位于我的gadget.xml中:
Hello Gadget<br />
#requireResource("com.atlassian.gadgets.publisher:ajs-gadgets")
#requireResource("com.tngtech.gadgets.jira-complain-gadget-plugin:web-resources")
#includeResources()
#oauth
<script type="text/javascript">(function () {
var gadget = AJS.Gadget({
baseUrl: "__ATLASSIAN_BASE_URL__",
view: {
onResizeAdjustHeight: true,
enableReload: true,
template: function(args) {
var gadget = this;
window.alert("1");
gadget.getView().html(args.hello);
window.alert("2");
},
args: [{
key: "hello",
ajaxOptions: function () {
return {
url: "/rest/jira-rest/1.0/ComplainChart/HelloWorld"
};
}
}]
}
});
})();
</script>
]]></Content>
Java类我的地址看起来像这样:
@Path("/ComplainChart")
@AnonymousAllowed
@Produces(MediaType.TEXT_HTML)
public class ComplainChart {
public ComplainChart() {
}
@GET
@Path("/HelloWorld")
@Produces(MediaType.TEXT_HTML)
public Response getVersionsForProject() {
return Response.ok("Hello Java<br/>").build();
}
}
URL可能是正确的,get请求的firebug输出如下所示:
throw 1; < don't be evil' >{"http://localhost:1990/jira/rest/jira-rest/1.0/complainChart/HelloWorld?cacheBuster=1308293636385":{"headers":{"set-cookie":["JSESSIONID=5652167D4DADE39719C4FED0C7174A03;Path=/","atlassian.xsrf.token=BV8N-OK2J-IQUQ-YNNK|b52c0f4b28944d7d11561aed079093f767448aca|lin; Path=/jira"]},"body":"Hello Java<br/>","rc":200}}
即使没有gadget.getView部分,也不会执行警报(它们没有args部分),我在我的atlas运行终端中获得了一个巨大的Stack Trace
[INFO] [talledLocalContainer] com.atlassian.util.concurrent.LazyReference$InitializationException: com.sun.jersey.api.container.ContainerException: The ResourceConfig instance does not contain any root resource classes.
[INFO] [talledLocalContainer] at com.atlassian.util.concurrent.LazyReference.getInterruptibly(LazyReference.java:152)
[INFO] [talledLocalContainer] at com.atlassian.util.concurrent.LazyReference.get(LazyReference.java:115)
[INFO] [talledLocalContainer] at com.atlassian.plugin.servlet.DefaultServletModuleManager.getFilter(DefaultServletModuleManager.java:358)
[INFO] [talledLocalContainer] at com.atlassian.plugin.servlet.DefaultServletModuleManager.getFilters(DefaultServletModuleManager.java:212)
.............
有人可以帮我吗?
亚历
编辑:Fyi在这里我的pom文件,我不确定,这是完全正确的:
<dependencies>
<dependency>
<groupId>com.atlassian.gadgets</groupId>
<artifactId>atlassian-gadgets-api</artifactId>
<version>3.1.7</version>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>atlassian-jira</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-func-tests</artifactId>
<version>${jira.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>1.1.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-rest-plugin</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.plugins.rest</groupId>
<artifactId>atlassian-rest-common</artifactId>
<version>2.5.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.sal</groupId>
<artifactId>sal-api</artifactId>
<version>2.1.0.beta1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-jira-plugin</artifactId>
<version>3.5-SNAPSHOT</version>
<extensions>true</extensions>
<configuration>
<productVersion>${jira.version}</productVersion>
<productDataVersion>${jira.data.version}</productDataVersion>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<jira.version>4.3.4</jira.version>
<jira.data.version>4.3.4</jira.data.version>
</properties>
答案 0 :(得分:1)
找到解决方案:您需要返回一个自己的类的Object,其注释如下:
@XmlRootElement
public static class HelloClass {
@XmlElement
String output;
HelloClass() {
output = "Hello";
}
HelloClass(String who) {
output = "Hello " + who;
}
}
答案 1 :(得分:0)
我改变REST API实现后遇到了同样的问题。首先,我恢复了我的更改但是没有效果(我无法理解为什么)。比我在这里建议添加XmlRootElement,但它也没有。重新启动服务器,重新编译一个干净的插件,......没有任何效果。
所以在绝望中我删除了/ target文件夹并重新启动了操作系统。只有这对我有用。