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 - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -