I've added a jar into project, but my app can not see this. IDE doesn't say something wrong during devepoling, but not after deploy.
Does it mean, that smsj.jar
is not in the CLASSPATH
?
I've added a jar into project, but my app can not see this. IDE doesn't say something wrong during devepoling, but not after deploy.
Does it mean, that smsj.jar
is not in the CLASSPATH
?
As the image says you have just added the smsj.jar
.
But the smsj.jar
has dependency on some other jars because of that you are getting the NoClassDefFoundError
.
Try to include the dependecies of smsj as well which are slf4j-simple
, rxtx
, javacomm
.