| Author |
classpath
|
savitririnki gupta
Greenhorn
Joined: Aug 08, 2011
Posts: 2
|
|
|
I installed weblogic(8.1) server to learn servlet basic programming,is it necessary to set the classpath,if yes then please tell me how can i set my classpath
|
 |
Santosh Kumar Nayak
Ranch Hand
Joined: Aug 02, 2011
Posts: 35
|
|
Hi Rinki,
You need to set the class path for the servlet-api.jar file
set classpath=%classpath%;<entire path of the jar file>\servlet-api.jar;
Hope this works
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
The classpath only needs to be set for compiling front he command line. If you are using Ant or Maven, you use the tool to manage the compilation class path.
At run-time, the classpath is not relevant -- required jars are placed in the WEB-INF/lib folder.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: classpath
|
|
|