Menu

4 Eylül 2009 Cuma

Jersey Examples

Jersey Nedir?
Ornegimize gecmeden once jersey nedir ondan bahsedelim kisaca.
Jersey, RESTFul web servisin sun tarafindan gelistirilen implementasyonudur. Kullanmak icin yapmamiz gereken cok kucukseyler var. Bunlardan bir tanesi, web.xml icerisinde servlet jersey`in destekledigi servlete tarif etmek, Ama bu servlet bisey istiyoruz bizden, oyle bir class yazacaksiniz ki, resources`leri dahil ettiginiz class applicationu extend etmelidir. O application extend ettikden sonra hangi resources var ise onlari bunun icine yazmalisiniz.. Bunun kolay yolu resourcesi / yapip otomatik aratabiliriz. ornegimizde gorecez.

Example-1
Oncelikle bir tane class yaratip, bunu RESTFul web servis yapalim, RESTFul web servis olmasi icin tek yapmamiz gerekn,
@Path("/helloworld")
annotationu ile gostermemiz.
Simdi classimizin icini doldurmaya baslayalim.

HelloWorld.java

import javax.ws.rs.Path;
import javax.ws.rs.GET

@Path("/helloworld")
public class HelloWorld{

@Path("sayHello")
@GET
@Produces("text/plain")
public String sayHello(){
return "Merhaba Dunya";
}
}


web.xml


4 yorum:

  1. please, change the section in DUNYA!. There are pointing to other blog!

    YanıtlaSil
  2. Paylasimin icin cok teskkur ederim

    YanıtlaSil
  3. What's up mates, fastidious paragraph and pleasant arguments commented here, I am really enjoying by these.

    my page - Satellite CCCam Server

    YanıtlaSil
  4. Hello, for all time i used to check blog posts here in the early hours
    in the dawn, as i enjoy to gain knowledge of more and more.


    Check out my web site: Cccam Tester

    YanıtlaSil