Introduction

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 3

Sending data from UI to Controller:

HTML Form

Query Parameters
Controller

User
123
123
John
John

john@gmail.com john@gmail.com

submit

Container:

Reads Converts Creates Object Sets Values


55
id 55
John
name John john@gmail.co
m

email john@gmail.com
Controller
class User{
submit
@ModelAttribute
int id;

String name;

String email;
}

You might also like