What is the difference between @PathParam and @PathVariable

后端 未结 7 1601
天涯浪人
天涯浪人 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

提交回复
热议问题