Rest Jersey Example: Download Link: Https://jersey - Github.io/download - HTML
Rest Jersey Example: Download Link: Https://jersey - Github.io/download - HTML
1
ReST Notes [By Raghu Sir]. SathyaTechnologies,Ameerpet.
=> Enter Project name => Click on Next button => finish
2
ReST Notes [By Raghu Sir]. SathyaTechnologies,Ameerpet.
web.xml code:
package com.app;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
@Path("/msg")
public class Message {
@Path("/show")
@GET
public String showMsg(){
return "hello";
}
}
3
ReST Notes [By Raghu Sir]. SathyaTechnologies,Ameerpet.
Folder Structure: