I am trying to pass a value from one controller to another one. Example: page 1(controller A) has 5 lists of values. I clicked the 3rd value and so I am directed to page 2(controller B). Here I need to get data based on the value I clicked in the page 1(controller A).
Example:
page 1 list of students
id name
1 mark
2 Dev
3 Nancy
page 2 details of student
name=mark
subject grade
English A
Spanish A-
I am using spring-hibernate to get data from a database.