| Author |
Accessing Java Object in JSP
|
Narasimhan Balasubramanian
Greenhorn
Joined: Mar 28, 2003
Posts: 5
|
|
Here is a problem i have, might be a very basic issue to many here... 1. I have a java object at <server_root>/<application_directory>/javaclass directory. 2. The Class belongs to package javaclass 3. My jsp resides in <application_directory> and it does a <%@ import="javaclass.ConnPool" %> 4. but when I try to instantiate the ConnPool it throws me an error Class jsp_servlet._gs._eshop.ConnPool not found. probably occurred due to an error in /GS/eShop/connection.jsp line 6: ConnPool connP = new ConnPool(); Can anyone shed light on why the jsp page is not able to access the java object ? TIA Narsi
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
I have a java object at <server_root>/<application_directory>/javaclass directory.
To be available to your web application, your package hierarchy should be rooted at WEB-INF/classes. Therefore, your class should reside in: hth, bear
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Narasimhan Balasubramanian
Greenhorn
Joined: Mar 28, 2003
Posts: 5
|
|
|
Does this apply even if I am using weblogic ?
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56153
|
|
It does if weblogic follows the standards for web applications. (If it doesn't, I ditch it faster than a flaming porcupine!) hth, bear
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Accessing Java Object in JSP
|
|
|