Posts by Felix Ricardo Gilioli • 36 points
2 posts
-
1
votes2
answers232
viewsA: email validation and password being equal and with minimum character
You can use HTML5 validations, for example: <input type="text" name="password" maxlength="16" minLength="8"> <input type="email" name="email">
-
1
votes2
answers313
viewsA: Spring data Jpa implement generic methods
Generally, all your services will have the same crud methods, such as, save, delete, find, findAll, etc. I recommend that you create a generic interface by passing the entity type as parameter. This…