Hi,
I have a web-item in section atl.jira.proj.config/projectgroup3 also I have a Servlet that implements my requirement. Now I need add in my velocity tag meta with the projectKey for example:
<meta name="projectKey" content="KEY" />
My problem is that I can't get projectKey form HttpServlet. I try with
Any ideas??
I try with https://community.atlassian.com/t5/Answers-Developer-Questions/How-to-get-current-project-in-jira/qaq-p/479097 but doesn't work
I can't figure out why BrowseContext or JiraHelper injection doesn't work in this case (for example UserManager is injected ok in the servlet). But you can add query parameters to the web-item link inside atlassian-plugin.xml:
<link linkId="iq-propagate-component-link">/plugins/servlet/iq-propagate?pid=${helper.projectObject.id}&key=${project.key}</link>
Thank so much for your answer, now I have projectKey.
Best regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you correctly injected your BrowseContext?
I mean component-import in the atlassian-plugin.xml or @Inject and @ComponentImport annotations if you're using atlassian-spring-scanner?
<component-import key="browseContext" name="Browse Context Interface" interface="com.atlassian.jira.project.browse.BrowseContext
<description>Provides access to browse context</description>
</component-import>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In the log show the below:
never resolved service '&browseContext' with filter '(&(objectClass=com.atlassian.jira.project.browse.BrowseContext)(objectClass=com.atlassian.jira.project.browse.BrowseContext))'
I'm using atlassian-spring-scanner:
@Scanned
public class ComponentSyncAdmin extends HttpServlet {
@ComponentImport
private final BrowseContext browserContext;
private final ComponentSyncService componentSyncService;
private static final Logger log = LoggerFactory.getLogger(ComponentSyncAdmin.class);
@Inject
public ComponentSyncAdmin(ComponentSyncService componentSyncService, BrowseContext browserContext) {
this.componentSyncService = checkNotNull(componentSyncService);
this.browserContext = checkNotNull(browserContext);
}
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
Project project = browserContext.getProject();
.
.
.
.
I have a mistake using ComponentImport?
Best regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I add defintion web item
<!-- Link in tab panel project's administrator -->
<web-item key="iq-propagate-component" name="Propagate Component"
section="atl.jira.proj.config/projectgroup3" weight="200">
<description key="iq-propagte-component-desc">Configure propagate</description>
<label key="Propagate Component" />
<link linkId="iq-propagate-component-link">/plugins/servlet/iq-propagate</link>
</web-item>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Í add too my servlet definition:
<!-- Servlet to management plugin -->
<servlet name="Issue CRUD" i18n-name-key="issue-crud.name" key="issue-crud"
class="com.inlogiq.jira.plugins.admin.ComponentSyncAdmin">
<description key="issue-crud.description">The Issue CRUD Plugin</description>
<url-pattern>/iq-propagate</url-pattern>
</servlet>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Aleksandr,
Thanks for your reply :)
My problem is that I don,'t have clase or method which get project key.
I try with projectService but don't have method for my problem, also I try with BrowseContext but If I try add in my contructor is null in my Servlet
Best regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
what exactly doesn't work? Do you have any errors, e.g. NullPointerException? How is your servlet described in the atlassian-plugin.xml?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.