Jira Gadgets 开发结构
我需要在同一个插件中开发更多的小工具,这些小工具看起来非常相似,改变的是它们需要访问和显示的资源。最好的方法是什么?
即使每个小工具相同,我是否需要为每个小工具创建一个 xml 文件?
对于 Java 部分,我可以为每个小工具使用具有不同路径的单个类,例如: @Path(“生成小工具1”),@Path(“生成小工具2”)...?
I need to develop more Gadgets in the same plugin, the gadgets will look pretty the same, what change is the resource they need to access and display. What's the best way to do this?
Do I need to create an xml file for each gadget even if it's the same?
For the Java part can I use a single class with different path for each gadget, like:
@Path("generate-gadget1"), @Path("generate-gadget2")...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个小工具都需要一个单独的 XML 文件。您可以使用 @Path 在一个类中创建多个 REST 端点。
如果您在 JIRA 开发者论坛 (http://forums) 上提出这些问题,您可能会得到更多回复.atlassian.com/forum.jspa?forumID=100
You need a separate XML file for each gadget. You can create multiple REST endpoints within one class by using @Path.
You might get more replies if you ask these questions on the JIRA developers forum at http://forums.atlassian.com/forum.jspa?forumID=100