Re: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Martin Gainty
If I am not mistaken some IDEs create a default public constructor for you..
*My 2 pennies*
Martin
- Original Message -
From: "Kris Schneider" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, January 05, 2004 8:05 AM
Subject: RE: javax.servlet.ServletException: Exception creating bean of
class


> In this case, the only constructor for the class is the default one.
Equivalent to:
>
> public newitemForm() { super(); }
>
> I think the link should be:
>
> 
>
> but I only took a quick look through the code...
>
> Quoting Joe Hertz <[EMAIL PROTECTED]>:
>
> > To borrow from the title of a movie:
> >
> > Dude, where's my constructor?
> >
> >
> > > >
> > > > this is my newitemForm.java
> > > > newitemForm.java
> > > > =
> > > > package net.foong;
> > > >
> > > > import javax.servlet.http.HttpServletRequest;
> > > >
> > > > import org.apache.struts.action.ActionForm;
> > > > import org.apache.struts.action.ActionMapping;
> > > >
> > > > public class newitemForm extends ActionForm {
> > > > private String itemName;
> > > > private int quantity;
> > > >
> > > > public void setItemName(String itemName) {
> > > > this.itemName=itemName;
> > > > }
> > > > public void setQuantity(int quantity) {
> > > > this.quantity=quantity; }
> > > >
> > > > public String getItemName() { return itemName; }
> > > > public int getQuantity() { return quantity; }
> > > > public void reset(ActionMapping mapping, HttpServletRequest
> > > > request) {
> > > >  this.itemName = null;
> > > >  this.quantity = 0;
> > > >  }
> > > > }
>
> --
> Kris Schneider <mailto:[EMAIL PROTECTED]>
> D.O.Tech   <http://www.dotech.com/>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Kris Schneider
In this case, the only constructor for the class is the default one. Equivalent to:

public newitemForm() { super(); }

I think the link should be:



but I only took a quick look through the code...

Quoting Joe Hertz <[EMAIL PROTECTED]>:

> To borrow from the title of a movie:
> 
> Dude, where's my constructor?
> 
>  
> > > 
> > > this is my newitemForm.java
> > > newitemForm.java
> > > =
> > > package net.foong;
> > > 
> > > import javax.servlet.http.HttpServletRequest;
> > > 
> > > import org.apache.struts.action.ActionForm;
> > > import org.apache.struts.action.ActionMapping;
> > > 
> > > public class newitemForm extends ActionForm {
> > > private String itemName;
> > > private int quantity;
> > >  
> > > public void setItemName(String itemName) { 
> > > this.itemName=itemName; 
> > > }
> > > public void setQuantity(int quantity) { 
> > > this.quantity=quantity; }
> > > 
> > > public String getItemName() { return itemName; }
> > > public int getQuantity() { return quantity; }
> > > public void reset(ActionMapping mapping, HttpServletRequest 
> > > request) {
> > >  this.itemName = null;
> > >  this.quantity = 0;
> > >  }
> > > }

-- 
Kris Schneider 
D.O.Tech   

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: javax.servlet.ServletException: Exception creating bean of class

2004-01-05 Thread Joe Hertz
To borrow from the title of a movie:

Dude, where's my constructor?

 
> > 
> > this is my newitemForm.java
> > newitemForm.java
> > =
> > package net.foong;
> > 
> > import javax.servlet.http.HttpServletRequest;
> > 
> > import org.apache.struts.action.ActionForm;
> > import org.apache.struts.action.ActionMapping;
> > 
> > public class newitemForm extends ActionForm {
> > private String itemName;
> > private int quantity;
> >  
> > public void setItemName(String itemName) { 
> > this.itemName=itemName; 
> > }
> > public void setQuantity(int quantity) { 
> > this.quantity=quantity; }
> > 
> > public String getItemName() { return itemName; }
> > public int getQuantity() { return quantity; }
> > public void reset(ActionMapping mapping, HttpServletRequest 
> > request) {
> >  this.itemName = null;
> >  this.quantity = 0;
> >  }
> > }
> 
> 



-- 




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]