A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
JavaRanch
»
Java Forums
»
Java
»
JSP
Author
Again problem in usebean
kuni patel
Greenhorn
Joined: Jun 04, 2005
Posts: 7
posted
Sep 21, 2005 04:13:00
0
Thanx Mr/Miss Ben..
But
hi
i am developing a application in jsp & i am getting an error in
tomcat
server on using usebean
Error: 500
Location: /krunaljspbeans/beans.jsp
Internal
Servlet
Error:
org.apache.jasper.JasperException: Unable to load class krunaljspbeans.LanguageBeans
In this,
i create one html->beans.html
in that html i call beans.jsp.
as well as i put those two app,html and jsp in krunaljspbeans package that is in root directiory.ok.
in this jsp i use that usebeans.
that code is:
<html>
<body>
<jsp:useBean id="languageBean" class=" krunaljspbeans.LanguageBeans" />
<jsp:setProperty name="languageBean" property="name" value='<%= request.getParameter("name") %>' />
<p> Hello, <jsp:getProperty name="languageBean" property="name" /><%= LanguageBeans.getName()%></p>
</body>
</html>
and my
java
class LanguageBeans code is:
package krunaljspbeans;
public class LanguageBeans
{
private
String
name="unknown";
public String getName()
{
return(name);
}
public void setName(String name)
{
this.name = name;
}
}
i compile that program and put that class in root/webinf/class/krunaljspbeans
after that when i run
http://localhost:8080/krunaljspbeans/beans.html
it gives me above error.
so,Plz tell me where i m wrong?
Plz, give me right direction.
Thanx.
Thanx
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
I like...
posted
Sep 21, 2005 04:38:00
0
I put my reply in the
Original Thread
Please try not to spread a single conversation among multiple threads.
There is a "Reply" button at the bottom of each thread that you can use to add new posts.
Java API
J2EE API
Servlet Spec
JSP Spec
How to ask a question...
Simple Servlet Examples
jsonf
I agree. Here's the link:
http://aspose.com/file-tools
subject: Again problem in usebean
Similar Threads
jsp:usebean
jsp:getProperty
problem in usebean
unable to compile class for jsp
JSP and JavaBeans
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter