0

I need to have a URL for passing parameters to my rest server like below: http://localhost:8080/myprojectName/resrtApp?Name=$Name&LastName=$LastName&Message=$Message&UserId=$UserId

I used jersey for my rest server. how can I define this pattern in @Path?

zorro6064
  • 484
  • 2
  • 7
  • 18

1 Answers1

1

You can consider using the queryparam I think. An example is here

User2709
  • 573
  • 5
  • 17