Where to find "jersey" for creating a java REST Service? -


i trying build java rest service.

i following this tutorial (which seems extremely popular) , 1st thing says , download jersey link : http://jersey.java.net/

however link doesnt work , , when google more , cant find anywhere place download these jar files essential build service.

any ideas can find it?

you can download jars from...

http://www.java2s.com/code/jar/j/downloadjerseyjar.htm 

although i'd recommend using maven dependencies.

<dependency>     <groupid>com.sun.jersey</groupid>     <artifactid>jersey-server</artifactid>     <version>1.17.1</version> </dependency> 

Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -