CXF RESTFUL Service - Example jax-rs
 CXF frame work  supports restful web services.  It is provided in the following ways:   JAX_RS  JAX_WS ProviderDispatch  HtppBinding   Below is the example  of RESTFUL service  which gives an xml response .The data is pulled form  the database .I have also integrated  spring-jdbc with cxf.   check the response after running the application at- http://localhost:8086/cxf-jaxrs-poc/myservice/users   Port number can change based on availability.   Lets start with the configurations-cxf.xml :    <?xml version="1.0" encoding="UTF-8"?>    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"      xmlns:jaxrs="http://cxf.apache.org/jaxrs"      xsi:schemaLocation="    http://www.springframework.org/schema/beans    http://www.springframework.org/schema/beans/spring-beans.xsd    http://cxf.apache.org/jaxrs    http://cxf.apache.org/schemas/jaxrs.xsd"      default-lazy-in...