vote up 3 vote down star

Eclipse has a Run Configurations screen with a Classpath tab.

I had some jars listed in the "user entries" section of this tab but my project did not run until I duplicated those jar files into the "bootstrap entries" section. After the jars were listed in both sections, the project ran successfully.

Why?

What's the difference between these two different categories of Classpath settings?

flag

80% accept rate

3 Answers

vote up 1 vote down check

Can you generate the jar file both ways extract them and compare them. I am horribly curious if the jar file changed when you added the entry. Some information on class loading might offer some insight. The specification for jar files doesn't really offer any hints.

link|flag
"Generate the jar file". Not sure what you mean. – Michael Jay Apr 19 at 3:46
Interesting. The "class loading" link you provided says: "When resolving a class name, the runtime searches files in this order: 1. bootstrap class path 2. extensions 3. user class path" That seems to contradict my experience since, in my case, it seems the user class path was ignored at runtime. – Michael Jay Apr 19 at 3:54
1  
There really is no telling what lies that IDE is telling to Java when it runs! – ojblass Apr 19 at 4:05
1  
You can export a jar file by right clicking your project and using the export JAR file feature. I am forced to use eclipse at work and I am at home so I can't verify that. Remember that the compiler setting are independent of the run settings... You can use a different Java version for compling and yet another at run time... I would assume the User settings are in fact only applying to runtime and charlie should get a checkmark by his name. IDEs are pure hell for understanding fundamentals. – ojblass Apr 19 at 4:19
1  
I think you have learned an important lesson about IDEs. I would be more than curious if a runnable jar is different than a jar and that bootstrap entry might just pop up. There are good tools to compare directories (Windiff might be at hand) so it should not be too hard to compare these. Seriously IDEs are evil sometimes. – ojblass Apr 19 at 5:08
show 7 more comments
vote up 1 vote down

One of them is for checking the sources/classpaths in the editor, the other is for the runtime environment.

I think.

What the hell, I'm maxed out today anyway.

link|flag
15400 / 200 = 77 days... nice... I think the checkmark should move in this case. :( – ojblass Apr 19 at 4:28
Well, thanks. My average is way less that 200/day though. – Charlie Martin Apr 19 at 4:36
vote up 0 vote down

The difference is the order of their specification in the classloaders.

The bootstrap classpath is managed by the top-level classloader when starting the VM that will execute the app. (From a commandline this is speicfied using -Xbootclasspath)

The user classpath are entries that are managed by the application classloader.

Any entries in the bootstrap classpath take precedence over the user classpath.

These are initialized based on the project containing the application to launch, but you can modify them in the launcher configuration for the application you wnat to launch in eclipse.

As to why it didn't work: what were the jars? Were they things that needed to be loaded from the runtime classes (like xml parser replacement libs?)

See http://java.sun.com/j2se/1.4.2/docs/tooldocs/findingclasses.html for more details.

-- Scott

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.