Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Restful web service in java

Tags:

java

rest

I have a project and i was trying to create a restful webservis. I searched a lot and almost finished all the net documentation. Always having a problem. Can someone say me a good webservis sample which has got server and client side in java?

like image 339
Iguramu Avatar asked Jan 24 '23 07:01

Iguramu


1 Answers

The standard API for RESTful web services which is going to be included in Java EE 6 (to be released later in 2009) is JAX-RS. Jersey is Sun's reference implementation of this API, which is included in Glassfish v3.

like image 181
Jesper Avatar answered Feb 01 '23 04:02

Jesper