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

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

Command prompt result in label. Python 2.7 -