• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problems with Struts 2 number validation

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all!
I'm developing a simple e-commerce web project for school, and today I had some troubles using validation framework built-in with Struts 2.
As discussed in this thread, it seems that Struts 2 simply ignore the fact that fields that should contain numbers, are empty. In other words, an empty string is considered to be a valid number.

I would like to solve this problem using XML only, is it possible? I know I could check fields within the Java code, but I think it's not the best solution.
I tried to use some validators (regex, required, requiredstring) before the <field-validator type="long">, but none of them worked. I suppose the reason's that all non-number validators expect a String from the getter, but they receives a long.

Any idea?
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Jack Dragano wrote: I know I could check fields within the Java code, but I think it's not the best solution.



Frankly, the "best solution" is the one that works. It looks like the XML validator doesn't do what you want it to do.
Since it looks like a few people have encountered this problem, you may want to check the Struts mailing list to see if anyone has an acceptable workaround. If you find one, be sure to check back in with us!
 
Jack Dragano
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
On an empty string Tomcat throws a silent exception, because it cannot find the method that takes a string.

I thought to change getter and setter to:


and then evaluate it with both requiredstring and regex, to be sure that it's a number. Although not much elegant, it should work.
 
yeah, but ... what would PIE do? Especially concerning this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic