File file = new File("E:\\Jira Plugin Workspace\\jiraService\\target\\jira\\home\\data\\attachments\\Checklist.xlsx"); ApplicationUser user = ComponentAccessor.getJiraAuthenticationContext().getUser(); Timestamp time = new Timestamp(System.currentTimeMillis()); AttachmentManager attachmentManager = ComponentAccessor.getAttachmentManager(); try { CreateAttachmentParamsBean bean = new CreateAttachmentParamsBean.Builder(file, file.getName(), "application/octet-stream", user, issue).build(); ComponentAccessor.getAttachmentManager().createAttachment(bean); } catch (AttachmentException e) { e.printStackTrace(); }
i am creating issue programmatically and that time by using above code i am attaching file to each issue. Issue get created with specified attachment but i am not able to download that attahcment. it is not storing that attached file into the attachment folder of jira.
It give error:
"com.atlassian.jira.web.util.AttachmentException: Could not save attachment to storage: java.io.FileNotFoundException" error.
Attached File get removed(deleted) automatically from mention location after running above code. that way FileNotFoundException getting.
Can any one tell me what is wrong in it?
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.