I have create jsp application with in myeclipse using folloeing process
From the menu i create a J2EE ->WebProject
The default folder name is src which is create automatically in editor
when we create a package it will create under src folder
as i create dbconnection in src folder
The index.jsp file is in WebRoot folder .
I have use the bean dbconnection in index.jsp as described below
<jsp:useBean id=”con” scope=”session” class=”dbconnection.ConnectionManager”></jsp:useBean>
<jsp:useBean id=”app” scope=”sesion” class=”dbconnection.JspApp”></jsp:useBean>
<jsp:setProperty name=”con” property=”driverClass”
value=”com.mysql.jdbc.Driver” />
<jsp:setProperty name=”con” property=”connectionURL”
value=”jdbc:mysql://localhost:3306/guestbook” />
But it generate error and do not show any output There is no errors or warnings in dbconnection folder but i am unable to use it in my index.jsp page
Please help me
Thanks in advance