Reading-notes

Spring RequestMapping

RequestMapping With Path Variables

RequestMapping With Request Parameters

@RequestMapping — a Fallback for All Requests

-This is used to implement a fallback for all requests using http methods. we use the (*) to annotate for all requests , ex :

return “Fallback for GET Requests”; }

this summary