RE: How to reuse field validators?

2010-04-16 Thread Griffith, Michael *
>>  you must expose you model directly.

I'm not sure what you mean by that... Can you restate?

MG

-Original Message-
From: Lukasz Lenart [mailto:lukasz.len...@googlemail.com] 
Sent: Friday, April 16, 2010 9:53 AM
To: Griffith, Michael *
Cc: Struts Users Mailing List
Subject: Re: How to reuse field validators?

W dniu 16 kwietnia 2010 16:27 użytkownik Griffith, Michael * 
 napisał:
> Currently the xml file is in the package with the struts action.  I this this 
> is where my problem lies, should it be in the model package?

Yes, and you must expose you model directly.


Regards
--
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: How to reuse field validators?

2010-04-16 Thread Lukasz Lenart
W dniu 16 kwietnia 2010 16:27 użytkownik Griffith, Michael *
 napisał:
> Currently the xml file is in the package with the struts action.  I this this 
> is where my problem lies, should it be in the model package?

Yes, and you must expose you model directly.


Regards
-- 
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



RE: How to reuse field validators?

2010-04-16 Thread Griffith, Michael *
Currently the xml file is in the package with the struts action.  I this this 
is where my problem lies, should it be in the model package?

MG 

-Original Message-
From: Lukasz Lenart [mailto:lukasz.len...@googlemail.com] 
Sent: Friday, April 16, 2010 9:26 AM
To: Griffith, Michael *
Subject: Re: How to reuse field validators?

W dniu 16 kwietnia 2010 14:51 użytkownik Griffith, Michael * 
 napisał:
> I want to reuse the field validations in -validator.xml in two 
> different Action classes in two different packages and different namespaces. 
> Is there a way to do that without copying the XML file?

Your model validation should work, if you are using the same model in different 
actions. Maybe the name is wrong -> -validation.xml?


Regards
--
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



RE: How to reuse field validators?

2010-04-16 Thread Griffith, Michael *
Maybe I didn't express my problem correctly. The @SkipValidation annotation 
marks an Action method not to be validated. 

I want to reuse the field validations in -validator.xml in two 
different Action classes in two different packages and different namespaces. Is 
there a way to do that without copying the XML file?

MG

-Original Message-
From: Lukasz Lenart [mailto:lukasz.len...@googlemail.com] 
Sent: Friday, April 16, 2010 12:13 AM
To: Struts Users Mailing List
Subject: Re: How to reuse field validators?

2010/4/16 Griffith, Michael * :
> Hello all,
>
> I am not clear on how to reuse a field validator that doesn't share a 
> common package or action/alias.  I have package
>
> ...struts.admin/
> ...struts/application/
>
> with namespaces /admin and /application respectively.  I have a model 
> object with a validator -validator.xml in the /application 
> package that I need to reuse in the admin package.  What's the best 
> way to reuse the validator without repeating it?

You can add annotation @SkipValidation


Regards
--
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org


-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: How to reuse field validators?

2010-04-15 Thread Lukasz Lenart
2010/4/16 Griffith, Michael * :
> Hello all,
>
> I am not clear on how to reuse a field validator that doesn't share a
> common package or action/alias.  I have package
>
> ...struts.admin/
> ...struts/application/
>
> with namespaces /admin and /application respectively.  I have a model
> object with a validator -validator.xml in the /application
> package that I need to reuse in the admin package.  What's the best way
> to reuse the validator without repeating it?

You can add annotation @SkipValidation


Regards
-- 
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



How to reuse field validators?

2010-04-15 Thread Griffith, Michael *
Hello all, 
 
I am not clear on how to reuse a field validator that doesn't share a
common package or action/alias.  I have package
 
...struts.admin/
...struts/application/
 
with namespaces /admin and /application respectively.  I have a model
object with a validator -validator.xml in the /application
package that I need to reuse in the admin package.  What's the best way
to reuse the validator without repeating it?

Thanks in Advance, 

MG