What is the difference between @PathParam and @PathVariable

后端 未结 7 1598
天涯浪人
天涯浪人 2020-12-23 19:21

To my knowledge both serves the same purpose. Except the fact that @PathVariable is from Spring MVC and @PathParam is from JAX-RS. Any insights on

相关标签:
7条回答
  • 2020-12-23 20:10

    Some can use @PathParam in Spring as well but value will be null when URL request is being made Same time if We use @PathVarriable then if value is not being passed then application will throw error

    0 讨论(0)
提交回复
热议问题