Reputation: 6350
I have installed tomcat 7.0 on my system. When I am trying to run my application on the server from eclipse, it shows me this error
The archive: C:/Program Files/Apache Software Foundation/Tomcat 7.0/bin/bootstrap.jar which is referenced by the classpath, does not exist.
What can be the issue?
Upvotes: 5
Views: 15167
Reputation: 745
double-click on Tomcat server --> click on Overview of Tomcat settings appears --> "Open launch configuration" then Classpath --> under classpath...Edit User Entries here
Upvotes: 5
Reputation: 1513
you have to add class path of java in the environment variable and then add the path of your Tomcat to the PATH.
Upvotes: 0
Reputation: 11926
As your Error shows bootstrap.jar is not in classpath so,
Go through eclipse-->Build path--> configure build path check your server .
Check the your server lib for given jar
If this is not resolve your problem delete your server , install again, and add your server in your new eclipse workspace project.
Hope it will help.
Upvotes: 1
Reputation: 1552
Try deleting the server configuration, and configure the server again.
If it doesn't work, change the server directory location.
If still issue, try un & reinstall of Tomcat. As a last option - try Tomcat 6/8 instead of 7.
Upvotes: 0