2
votes
5answers
162 views
Modify a string in Java bytecode (jar)
I need to modify a connection string that's hard-coded into a Java application (jar without source).
I presume it's possible to decompile the jar, then change the source and reco …
1
vote
2answers
142 views
How do I hide Referenced Libraries in Eclipse’s Java EE perspective?
Eclipse's normal Java perspective seems to hide Referenced Libraries just fine (in a "Referenced Libraries" folder in your project). Unfortunately, the Java EE perspective does not …
1
vote
2answers
93 views
How to handle two jar files in java?
I am using Netbeans IDE for a java project. In this project i need a jar file "htmlunit-2.6.jar".
I have included this jar file in the project libraries folder. I have instantiate …
0
votes
1answer
174 views
Multiple entry point (mainclass) for application client jar
How do I set up multiple entry points in an application client jar?
I am using Glassfish application server. I can grab the client using
asadmin get-client-stubs --appname APPL …
3
votes
7answers
545 views
JarScan, Scan all jar files in all subfolders for specific class.
We are seeing an older version of a class being used although we had the latest one deploy, to scan all jar files in all subfolders of appserver we need to write a small shell scri …
5
votes
4answers
251 views
Why should I sign my JAR files?
Why should I sign my JAR files?
I know that I need to sign my client-side JAR files (containing Applets) so that special things like filesystem access can be done, and so that the …
0
votes
3answers
209 views
How to explore which classes are loaded from which JARs?
Is there a way to determine which classes are loaded from which jars at runtime?
I'm sure we've all been in JAR hell before. I've run across this problem a lot troubleshooting Cla …
2
votes
1answer
228 views
m2eclipse Indexing 3rd-party jars from Maven repository
Hi,
I am using Nexus repository. and using Eclipse 3.4 with m2eclipse plugin installed. sometimes I need to upload jars that are not located in the central repositories (Like Sun …
2
votes
3answers
1k views
How can I add jars to the classpath when I invoke Jython *without* adding them to $CLASSPATH?
I'd like to do something similar to jython -cp FOO:BAR:BAZ argle.py.
If I add FOO, BAR, and BAZ to $CLASSPATH this works. I tried to add them to sys.path at run-time, but that doe …
6
votes
5answers
206 views
Is platform enforced versioning mechanism most sorely needed feature of java?
As developer, I am often interested in new language feature that can make your life easier. For example, java 5 brought generics and annotations to the language, features that can …
4
votes
2answers
1k views
Finding unused jars used in an eclipse project
Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?
