@Path("/example")
public class ExampleService {
@GET
@Path("/hello")
@Produces(MediaType.TEXT_PLAIN)
public String sayHello() {
return "Hello, World!";
}
}
<component name="ExampleServiceComponent">
<implementation class="com.example.ExampleService" />
<service>
<provide interface="javax.ws.rs.core.Application" />
</service>
</component>