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 -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

android - Unable to generate FCM token from dynamically instantiated Firebase -