Mass Assignment
Example
<form>
<input name="userId" type="text">
<input name="password" type="text">
<input name="email" text="text">
<input type="submit">
</form>@Data
public class User {
private String userid;
private String password;
private String email;
private boolean isAdmin;
}References
Last updated