How to remove classpath variables from WAS module

On our Dev box, our application module contains references to the file:/apps/WebSphere61/systemApps/isclite.ear/ jar files and classpath entries. On our Prod box, however, it only contains the jar file containing all of our required classes. On Dev, this is causing a problem when using apache-commons-fileuploader as these classes are also references in the systemApps jar. How can we remove the systemApps library references from our application module's classpath?

Websphere Application Server 6.1.0.17


Asked by: Justin663 | Posted: 23-01-2022






Answer 1

There are a couple of spots where libraries are referenced.

I assume that you want test to match prod.

Start the admin console (on test). There are libs defined on the Environment > Shared Libraries area and also in the Applications > Ent. Apps. > "my ear" > (additional properties) Libraries section.

See if it's defined in the Env > Shared Libraries area and remove it.

Answered by: Emily410 | Posted: 24-02-2022



Similar questions

Use Eclipse classpath variables in Java code

Is it possible to use Eclipse's classpath variables within in Java code? I have several bin directories for multiple projects that are defined in classpath variables, and need to reference them multiple times within one of my projects.


java - How can I copy Eclipse classpath variables from one workspace to a new workspace?

How can I copy the Eclipse classpath variables from the open workspace to a new workspace? I am using Eclipse Juno (Eclipse Platform 4.2.1 and Eclipse Java Development Tools 3.8.2).


java - Edit Classpath Variables via Shell Script

Is it possible to edit Eclipse/RAD classpath variables via a shell script? Background - Enterprise development team with a crazy 40 page word doc setup workspace guide.. Trying to make a shell script to automate most of it. Is it possible to edit environment settings, specifically this from a setup shell script? Thanks!


mysql - PATH and CLASSPATH variables in java

I have just started with jsp. I have downloaded tomcat server. Now when I tried to connect a db with using jdbc. I failed to connect it with MySQL and PostgreSQL. The reasons are: My java's path is set in PATH variable as C:\Program Files\Java\jdk1.8.0_40\bin Now for setting path for db (MySQL or PostgreSQL), I am using CLASSPATH variable as E:\XX\XX-XX.jar; The problem is that when I set classpath ...


clojure - How do you change the CLASSPATH within Java?

How do you change the CLASSPATH of a Java process from within the Java process? Before you ask me "Why would you want to do that?" I'll explain it shortly. When you have a Clojure REPL running it is common to need more jars in your CLASSPATH to load a Clojure source file, and I'd like to do it without having to restart Clojure itself (w...


java - Nested Folders in Eclipse Classpath

I'm trying to add two folders to my eclipse project's classpath, let's say Folder A and Folder B. B is inside A. Whenever I add A to the classpath <classpathentry kind="lib" path="/A"/> it works just fine, but I need to be able to access the files in B as well. Whenever I try to add <classpathentry kind="lib" path="/A/B"/> to the classpath, ...


java - Compile CLASSPATH in a Windows batchfile

On a Unix systems it's very easy to compile the CLASSPATH by using find: LIBDIR=`find lib/ -name \*.jar` for DIR in $LIBDIR: do CLASSPATH="$CLASSPATH:$DIR" done java -classpath $CLASSPATH com.example.MyClass What would be the aquivalent in a Windows batchfile?


java - What's the minimum classpath for an Axis2 client?

I want to build an Axis2 client (I'm only accessing a remote web service, I'm not implementing one!) with Maven2 and I don't want to add 21MB of JARs to my project. What do I have to put in my pom.xml to compile the code when I've converted the WSDL with ADB?


java - Specifying classpath for classes inside the JAR itself

If I have a class org.foobar.MyClass and want to put it in a JAR file, do I have to put it in the JAR's /org/foobar/ directory, or can I put it in /bin/org/foobar/ and somehow specify /bin/ as classpath inside the JAR itself?


windows - BAT file to create Java CLASSPATH

I want to distribute a command-line application written in Java on Windows. My application is distributed as a zip file, which has a lib directory entry which has the .jar files needed for invoking my main class. Currently, for Unix environments, I have a shell script which invokes the java command with a CLASSPATH created by appending all files in lib directory. How do I write a .BAT file with similar fu...


Setting classpath for a Java stored procedure in Oracle

I've got an Oracle 10g database, and I have a third-party jar file. I want to be able to run a SQL select query in my database that ultimately runs code in my third-party library to retrieve info for inclusion in a SQL result set. I see lots of tutorials on "Java stored procedures" and these seem to be a promising way to do this, but none seem to use third-party libraries, and I can't seem to figure out how to specify a ...


java - can't get the classpath right

i'm trying to compile this slick2d example (first one) but i can't get it to work. here's the code: import org.newdawn.slick.AppGameContainer; import org.newdawn.slick.BasicGame; import org.newdawn.slick.GameContainer; import org.newdawn.slick.Graphics; import org.newdawn.slick.SlickException;...


java - adding classpath in linux

export CLASSPATH=.;../somejar.jar;../mysql-connector-java-5.1.6-bin.jar java -Xmx500m folder.subfolder../dit1/some.xml cd .. is the above statement for setting the classpath to already existing classpath in linux is correct or not


java - use eclipse classpath in ant tasks

I want to use Ant to deliver a JAR file, how can I use the Eclipse classpath in my Ant task? Greets, Tobias






Still can't find your answer? Check out these amazing Java communities for help...



Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)



top