java.lang.ClassNotFoundException: com.ibm.broker.config.proxy.BarFile

894 Views Asked by At

Added 2 jar files for IBM integration in Java. Getting this exception:

error at :: BarFile b = BarFile.loadBarFile("C:\\Users\\Uni\\Desktop\\outputt\\Dev_BAR.bar");

root cause:::::::::

java.lang.ClassNotFoundException: com.ibm.broker.config.proxy.BarFile
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714)
org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559)
com.cts.XmlExtract.extract(XmlExtract.java:25)
com.cts.BrokerServlet.doGet(BrokerServlet.java:30)
javax.servlet.http.HttpServlet.service(HttpServlet.java:621)
javax.servlet.http.HttpServlet.service(HttpServlet.java:728)
1

There are 1 best solutions below

0
On

When developing a java project using an IDE (perhaps IBM's RAD or Eclipse) it is important to remember that there are two classpath that you care about:

  1. The classpath when you are writing the code. This is the Compile Classpath.
  2. The classpath when you are running the code on a server. This is the Runtime Classpath.

The error you are receiving is happening because the Runtime Classpath does not contain one (or both) of the jars that you are attempting to add to your project.

You can add a jar to the Runtime Classpath using one of the following techniques:

  1. Add the jar to the WEB-INF/libs directory in your web app project. This technique guarantees that the jar will be distributed with your WAR file, but also guarantees that the jar will not be shared by other projects that may want to use the jar.

  2. If you are building an EAR, add the jar to the EAR file. It's been a while since I built an ear, so I dont remember the exact directory name (I think you just at it to the root of the EAR). This allows WAR files that are in the EAR to share the jar.

  3. Add the jar to a shared location in your tomcat. $CATALINA_HOME/lib seems like a good spot. This allows all web apps in that instance of tomcat to share the jar.

  4. Other. Other servers provide other means to share a jar.