Skip to content
Advertisement

Endpoint overloading in Rest controller

I have a REST Controller in my Spring Boot application as follows:

JavaScript

Upon trying to start the application, I get the following error:

JavaScript

Upon changing the endpoints(in the getmapping part), this works perfectly. I fail to understand that since it does not recognise one with query param and one without as 2 separate points, then what is the possible fix for this? I am still a beginner so it would be great if someone could help.

hod

Advertisement

Answer

Usually in REST when you want a list of all students you make it

JavaScript

as you have done.

If you need just one one specific student by id the id is a path variable like:

JavaScript

So not exactly overloading.

Check also this

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement