• 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

Xdoclet struts tags

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello there! I have xdoclet configured to build my struts-config.xml and validation.xml. Problem is it's not building the validation.xml. It creates an empty validation.xml file, however it puts the form name on struts-config. I'm using xdoclet 1.2.2. Here's a snippet of my form class
[code]
/**
* @author vinicius.carvalho
* @struts.form name="TestTagForm"
*/
public class TesteTagForm extends ValidatorForm

/**
* @return Returns the dataInicial.
* @struts.validator
* type="required�
*/
public String getDataInicial() {
return dataInicial;
}
[code]

My xdoclet.xml has the strutsconfigxml and strutsvalidationxml tasks on it.

Any ideas?

Thanks
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic