Jira Gadget: простой вызов ресурса REST не работает - PullRequest
0 голосов
/ 17 июня 2011

Я пытаюсь написать гаджет внутри плагина 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 класса i выглядит следующим образом:

@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-адрес, вероятно, правильный, выходные данные firebug для запроса get выглядят так:

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), и я получаю огромную трассировку стека в моем терминале, работающем с атласом

[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)
.............

Может ли кто-нибудь помочь мне, пожалуйста?

Алекс

Редактировать: к вашему сведению мой файл 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>

Ответы [ 2 ]

1 голос
/ 27 июня 2011

Нашли решение: вам нужно вернуть объект собственного класса с такими аннотациями:

    @XmlRootElement
public static class HelloClass {
    @XmlElement
    String output;

    HelloClass() {
        output = "Hello";
    }

    HelloClass(String who) {
        output = "Hello " + who;
    }
}
0 голосов
/ 12 июля 2012

У меня была такая же проблема после того, как я изменил свою реализацию REST API. Сначала я отменил свои изменения, но это не сработало (я не могу понять, почему). Затем я добавил XmlRootElement, как предложено здесь, но он также не работал. Перезагрузка сервера, перекомпиляция чистого плагина, ... ничего не получалось.

Поэтому в отчаянии я удалил папку / target и перезапустил операционную систему. И только это сработало для меня.

...