RE: Re[4]: Am I the only one using java.util.Date?

2002-10-16 Thread James Higginbotham
James, I posted myself many times in that thread. That thread does not answer the question. It deals with java.sql.Date not java.util.Date and yes Craig does mention about custom Converters but I'm wondering if others have done that as their solution for dealing with java.util

Re[2]: Am I the only one using java.util.Date?

2002-10-16 Thread Rick Reumann
On Wednesday, October 16, 2002, 12:40:01 PM, kiuma wrote: k> Since I'm connected to jboss I use java.sql.Date. k> Then I pass values in millis and use a GregorianCalendar to manage dates. Thank you, but that's not really my question. I'm wondering more how others deal with getting their

Re[4]: Am I the only one using java.util.Date?

2002-10-16 Thread Rick Reumann
On Wednesday, October 16, 2002, 1:19:01 PM, James wrote: JH> Simple search for date conversion: JH> http://www.mail-archive.com/cgi-bin/htsearch?method=and&format=short&con JH> fig=struts-user_jakarta_apache_org&restrict=&exclude=&words=date+convers JH> ion James, I posted myself many tim

RE: Am I the only one using java.util.Date?

2002-10-16 Thread Padma Ginnaram
]] Sent: Wednesday, October 16, 2002 12:22 PM To: Struts List Subject: Am I the only one using java.util.Date? My business layer bean has a field as java.util.Date (example: birthDate). My form bean uses the String for this date (in this example.. String birthDate). The problem is I can't seem t

Re: Am I the only one using java.util.Date?

2002-10-16 Thread Brian Hickey
ROTECTED]> To: "Struts List" <[EMAIL PROTECTED]> Sent: Wednesday, October 16, 2002 12:22 PM Subject: Am I the only one using java.util.Date? > My business layer bean has a field as java.util.Date (example: > birthDate). My form bean uses the String for this date (in this > ex

RE: Re[2]: Am I the only one using java.util.Date?

2002-10-16 Thread James Higginbotham
ults to read through.. Enjoy! James > -Original Message- > From: Rick Reumann [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, October 16, 2002 11:59 AM > To: James Higginbotham > Cc: Struts Users Mailing List > Subject: Re[2]: Am I the only one using java.util.Date? > >

Re[2]: Am I the only one using java.util.Date?

2002-10-16 Thread Rick Reumann
On Wednesday, October 16, 2002, 12:28:15 PM, James wrote: JH> If you search the list archives at www.mail-archive.com, I think JH> you will find your question answered. Pappa Struts (Craig) JH> answered it, as did other folks. Can you please show me where this is the case? Before my p

RE: Am I the only one using java.util.Date?

2002-10-16 Thread du Plessis, Corneil C
du Plessis Technical Specialist Internet Development Retail Channels Standard Bank Direct +27 (11) 636-2210 Mobile +27 (83) 442-9221 ICQ# 66747137 -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: 16 October, 2002 18:22 To: Struts List Subject: Am I the only one using

Re: Am I the only one using java.util.Date?

2002-10-16 Thread kiuma
Since I'm connected to jboss I use java.sql.Date. Then I pass values in millis and use a GregorianCalendar to manage dates. Rick Reumann wrote: >My business layer bean has a field as java.util.Date (example: >birthDate). My form bean uses the String for this date (in this >example.. String bir

RE: Am I the only one using java.util.Date?

2002-10-16 Thread James Higginbotham
2 AM > To: Struts List > Subject: Am I the only one using java.util.Date? > > > My business layer bean has a field as java.util.Date > (example: birthDate). My form bean uses the String for this > date (in this example.. String birthDate). The problem is I > can&#x

Am I the only one using java.util.Date?

2002-10-16 Thread Rick Reumann
My business layer bean has a field as java.util.Date (example: birthDate). My form bean uses the String for this date (in this example.. String birthDate). The problem is I can't seem to use BeanUtils to copy the properties since it appears BeanUtils will only convert a java.sql.Date by default (g