javaBean

Reply

Join Date: Oct 2009
Posts: 1
Reputation: Andrew Docherty is an unknown quantity at this point 
Solved Threads: 0
Andrew Docherty Andrew Docherty is offline Offline
Newbie Poster

javaBean

 
0
  #1
27 Days Ago
Hi,
I am new to jsp, and Beans. I have been working on this piece of code, for the past week and I am no further along

I am using Tomcat Apache 6.0
In the ROOT folder I have a simple page test1.jsp:

  1. package user;
  2. <%@ page contentType="text/html; charset=utf-8" language="java" import="java.sql.*" errorPage="" %>
  3. <jsp:useBean id="userDetails" class="user.UserDetails" scope="session" />
  4. <jsp:setProperty name = "hopeThisWorks" property="*"/>
  5. <% userDetails.getData(); %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  10. <title>hello</title>
  11. </head>
  12.  
  13. <body>
  14. test 1
  15. </body>
  16. </html>

I have a java class in: WEB-INF\classes\user called UserDetails

Which I have attached.

I keep getting the error:

javax.servlet.ServletException: java.lang.NoClassDefFoundError: user/UserDetails (wrong name: java/user/UserDetails)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:275)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

As I said I have been working on it, and gotten no where, someone please help!!!

Thanks, Andrew
Last edited by peter_budo; 27 Days Ago at 8:21 pm. Reason: Keep It Organized - For easy readability, always wrap programming code within posts in [code] (code blocks)
Attached Files
File Type: java UserDetails.java (2.1 KB, 1 views)
Reply With Quote Quick reply to this message  
Join Date: Dec 2004
Posts: 4,189
Reputation: peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of peter_budo has much to be proud of 
Solved Threads: 483
Moderator
Featured Poster
peter_budo's Avatar
peter_budo peter_budo is offline Offline
Code tags enforcer
 
-1
  #2
27 Days Ago
You have package declaration on the top of JSP which is not need it, but you are missing package declaration in your UserDetails where obviously is need it...
Learn to see in another's calamity the ills which you should avoid.
Publilius Syrus
(~100 BC)

LJC - London Java Community, Graduate & Undergraduate Software Development Community, JAVAWUG (Java Web User Group), The London Android Group
Reply With Quote Quick reply to this message  
Reply

Message:



Other Threads in the JSP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC