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 -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -