Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

POI doesnt work with Jira Plugin

Laith Ata
Contributor
August 31, 2021

Hi everyone, 

POI seems to have problem in the atlassian enviroment. If a method is calling from POI then I am getting the following exception in my plugin. Has someone the same issue and know how to solve it?  

 


500Could not initialize class org.apache.poi.ooxml.util.DocumentHelperjava.lang.NoClassDefFoundError: Could not initialize class org.apache.poi.ooxml.util.DocumentHelper at org.apache.poi.openxml4j.opc.internal.ContentTypeManager.parseContentTypesFile(ContentTypeManager.java:395) at org.apache.poi.openxml4j.opc.internal.ContentTypeManager.<init>(ContentTypeManager.java:104) at org.apache.poi.openxml4j.opc.internal.ZipContentTypeManager.<init>(ZipContentTypeManager.java:54) at org.apache.poi.openxml4j.opc.ZipPackage.getPartsImpl(ZipPackage.java:256) at org.apache.poi.openxml4j.opc.OPCPackage.getParts(OPCPackage.java:742) at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:315) at org.apache.poi.ooxml.util.PackageHelper.open(PackageHelper.java:47) at org.apache.poi.xwpf.usermodel.XWPFDocument.<init>(XWPFDocument.java:123) at de.isogmbh.bereich27.rest.service.impl.AfoDocxBefuellenServiceImpl.updateDocument(AfoDocxBefuellenServiceImpl.java:81) at de.isogmbh.bereich27.rest.service.impl.AfoDocxBefuellenServiceImpl.processIssueAttachment(AfoDocxBefuellenServiceImpl.java:57) at de.isogmbh.bereich27.rest.service.impl.AfoBefuellenServiceImpl.processIssueAttachment(AfoBefuellenServiceImpl.java:17) at de.isogmbh.bereich27.rest.AnforderungApi.getMessage(AnforderungApi.java:36) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Nati

Some of my pom:
<dependency>    <groupId>org.apache.poi</groupId>    <artifactId>poi</artifactId>    <version>${poi.version}</version>    <exclusions>        <exclusion>            <groupId>org.slf4j</groupId>            <artifactId>jcl-over-slf4j</artifactId>        </exclusion>    </exclusions></dependency><dependency>    <groupId>org.apache.poi</groupId>    <artifactId>poi-ooxml-full</artifactId>    <version>${poi.version}</version></dependency><dependency>    <groupId>org.apache.poi</groupId>    <artifactId>poi-ooxml</artifactId>    <version>${poi.version}</version>    <exclusions>        <exclusion>            <groupId>commons-io</groupId>            <artifactId>commons-io</artifactId>        </exclusion>    </exclusions></dependency><dependency>    <groupId>org.apache.poi</groupId>    <artifactId>poi-scratchpad</artifactId>    <version>${poi.version}</version>    <scope>compile</scope></dependency>

  

0 answers

Suggest an answer

Log in or Sign up to answer