Tool to create HTML form using Java bean -


i trying find way generate html forms based on java code. ideally paste java bean tool generate html form me using member field types , validation annotations.

so if paste

@size(min = 2, max = 14) private string plate; 

into tool generate

<form>  <input type="text" name="plate" id="plate"  minlength="2" maxlength="14"></input> </form> 

there must can this, surely not doing manually cannot find it! there tool i'm missing?

thanks


Comments

Popular posts from this blog

javascript - Knockout pushing observable and computed data to an observable array -

'hasOwnProperty' in javascript -

Trouble making a JSON string -