On Sun, 8 Dec 2002 11:00:05 -0600 "Ron Day" <[EMAIL PROTECTED]> wrote:
> Your javabeans are not in a package.Tomcat 4.xx does not like this as it > puts it in the default package, and then cannot find it at run time. > > Just put your beans in a package, recompile and then add your package > directory structure under the "classes" directory. > > i.e if you have com.my.package for a bean mybean.class, then > put mybean.class in webapps/WEB-INF/classes/com/my/package directory > > R > > -----Original Message----- > From: Mikael Gvransson [mailto:[EMAIL PROTECTED]] > Sent: Sunday, December 08, 2002 8:48 AM > To: [EMAIL PROTECTED] > Subject: javabean problems > > > hey, > > it seems like i can't run my javabeans. > i'm using tomcat 4.1.12 binary distrubtion. > > i get the error "cannot resolve symbol". > > and i have no idea what it could be, it's just > a simple bean: > > public class JellyBean implements java.io.Serializable { > private String color; > > public JellyBean() { > } > > public String getColor() { > return color; > } > > public void setColor(String newColor) { > color = newColor; > } > } > > > -- > _ _ . | _ _ | [EMAIL PROTECTED] > | )( | | |< (_| (-` | http://micke.debinary.net > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > i tried making a testbean package. webapps/ROOT/WEB-INF/classes/com/testbean/JellyBean.class and added in the top of the file: package testbean; and <jsp:useBean id="jb" scope="session" class="testbean.JellyBean"/> and i got a diffrent error msg: The server encountered an internal error () that prevented it from fulfilling this request. org.apache.jasper.JasperException: testbean.JellyBean at org.apache.jasper.compiler.BeanRepository.getBeanType(BeanRepository.java:183) at org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:676) at org.apache.jasper.compiler.Node$GetProperty.accept(Node.java:552) at org.apache.jasper.compiler.Node$Nodes.visit(Node.java:1028) at org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:1070) at org.apache.jasper.compiler.Node$Visitor.visit(Node.java:1076) at org.apache.jasper.compiler.Node$Root.accept(Node.java:232) [..] more similar error code ... -- _ _ . | _ _ | [EMAIL PROTECTED] | )( | | |< (_| (-` | http://micke.debinary.net -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
