Apache CXF - JAX-WS - Contract First Hello World Webservice Example
Table of Contents
Apache CXF is an open source services framework. CXF helps to build and develop services using front-end programming APIs like JAX-WS and JAX-RS. These services can speak a variety of protocols such as SOAP, XML/HTTP or RESTful HTTP and work over a variety of transports such as HTTP or JMS.
The following tutorial illustrates a basic example in which we will configure, build and run a Hello World contract first client and web service using CXF, Spring, Maven, and Jetty.
Tools used:
- CXF 3.2
- Spring 4.3
- Jetty 9.4
- Maven 3.5
A web service can be developed using one of two approaches:
- Start with a WSDL contract and generate Java objects to implement the service.
- Start with a Java object and service-enable it using annotations.
For new development, the preferred approach is to first design your services using the Web Services Description Language (WSDL) and then generate the code to implement them. This approach enforces the concept that a service is an abstract entity that is implementation neutral.
For the following example, we will use a Hello World service that is defined by the helloworld.wsdl
WSDL shown below. It takes as input a persons first and last name and as result returns a greeting.
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions targetNamespace="http://codenotfound.com/services/helloworld"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://codenotfound.com/services/helloworld"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
name="HelloWorld">
<wsdl:types>
<schema targetNamespace="http://codenotfound.com/services/helloworld"
xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://codenotfound.com/services/helloworld"
elementFormDefault="qualified" attributeFormDefault="unqualified"
version="1.0">
<element name="person">
<complexType>
<sequence>
<element name="firstName" type="xsd:string" />
<element name="lastName" type="xsd:string" />
</sequence>
</complexType>
</element>
<element name="greeting">
<complexType>
<sequence>
<element name="text" type="xsd:string" />
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="sayHelloRequest">
<wsdl:part name="person" element="tns:person"></wsdl:part>
</wsdl:message>
<wsdl:message name="sayHelloResponse">
<wsdl:part name="greeting" element="tns:greeting"></wsdl:part>
</wsdl:message>
<wsdl:portType name="HelloWorld_PortType">
<wsdl:operation name="sayHello">
<wsdl:input message="tns:sayHelloRequest"></wsdl:input>
<wsdl:output message="tns:sayHelloResponse"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="HelloWorld_Binding" type="tns:HelloWorld_PortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="sayHello">
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="HelloWorld_Service">
<wsdl:port name="HelloWorld_Port" binding="tns:HelloWorld_Binding">
<soap:address
location="http://localhost:9090/codenotfound/services/helloworld" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Next is the Maven POM file which contains the needed dependencies. At the top of the list we find the CXF dependencies. The cxf-rt-transports-http-jetty
dependency is only needed in case the CFXServlet
is not used. As the example includes a JUnit test that runs without CXFServlet
we need to add this dependency.
CXF supports the Spring 2.0 XML syntax, which makes it easy to declare endpoints which are backed by Spring and inject clients into application code. It is also possible to use CXF without Spring but it may take a little extra effort. A number of things like policies and annotation processing are not wired in without Spring. To take advantage of those you would need to do some pre-setup coding. The example below will use Spring to create both requester (client) and provider (service) as such the needed Spring dependencies are included.
In addition to a unit test case we will also create an integration test case for which an instance of Jetty will be started that will host the above Hello World service. In order to achieve this the jetty-maven-plugin
has been added which is configured to be started/stopped, before/after the integration-test
phase of Maven. The <daemon>true</daemon>
configuration option forces Jetty to execute only while Maven is running, instead of running indefinitely.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.codenotfound</groupId>
<artifactId>cxf-jaxws-jetty-xml-config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>cxf-jaxws-jetty-xml-config</name>
<description>JAX-WS - CXF Contract First Hello World Webservice Tutorial</description>
<url>https://codenotfound.com/jaxws-cxf-contract-first-hello-world-webservice-tutorial.html</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<cxf.version>3.2.1</cxf.version>
<spring.version>4.3.13.RELEASE</spring.version>
<logback.version>1.2.3</logback.version>
<junit.version>4.12</junit.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<jetty-maven-plugin.version>9.4.8.v20171121</jetty-maven-plugin.version>
<maven-failsafe-plugin.version>2.20.1</maven-failsafe-plugin.version>
</properties>
<dependencies>
<!-- cxf -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<!-- Jetty is needed if you're are not using the CXFServlet -->
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>${cxf.version}</version>
</dependency>
<!-- spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<!-- logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- maven-compiler-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<!-- jetty-maven-plugin -->
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-maven-plugin.version}</version>
<configuration>
<httpConnector>
<port>9090</port>
</httpConnector>
<stopPort>8005</stopPort>
<stopKey>STOP</stopKey>
<daemon>true</daemon>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- maven-failsafe-plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- cxf-codegen-plugin -->
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${project.basedir}/src/main/resources/wsdl/helloworld.wsdl</wsdl>
<wsdlLocation>classpath:wsdl/helloworld.wsdl</wsdlLocation>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
CXF includes a Maven plugin called cxf-codegen-plugin
which can generate Java artifacts from a WSDL. In the above POM the wsdl2java
goal is configured to run in the generate-sources phase. By running the below Maven command, CXF will generate the Java artifacts. Each <wsdlOption>
element corresponds to a WSDL that needs generated artifacts.
mvn generate-sources
In order to avoid a hard-coded absolute path towards the configured WSDL in the generated Java artifacts, specify a
<wsdlLocation>
element using the classpath reference as shown above.
After running the mvn generate-sources
command you should be able to find back a number of auto-generated classes amongst which the HelloWorldPort
interface as shown below. In the next sections, we will use this interface to implement both the client and service.
Creating The Requester (Client) #
Creating a CXF client using Spring is done by specifying a jaxws:client
bean as shown in the below cxf-requester.xml
. In addition to a bean name, the service interface and the service address (or URL) need to be specified.
The result of below configuration is a bean that will be created with the specified name, implementing the service interface and invoking the remote SOAP service under the covers.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<!-- allows for ${} replacement in a spring xml configuration file from
a '.properties' file on the classpath -->
<context:property-placeholder location="classpath:cxf.properties" />
<jaxws:client id="helloWorldRequesterBean"
serviceClass="com.codenotfound.services.helloworld.HelloWorldPortType"
address="${helloworld.client.address}">
</jaxws:client>
</beans>
For this example, the CXF Spring configuration is kept in a separate file that is imported in the main context-requester.xml
shown below. In addition to this, annotation-based configuration is enabled and a cxf.properties
file is loaded which contains the address at which the Hello World service was made available in the previous section.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- import the CXF requester configuration -->
<import resource="classpath:META-INF/spring/cxf-requester.xml" />
<!-- HelloWorldClient bean -->
<bean id="helloWorldClientBean" class="com.codenotfound.client.HelloWorldClient" />
</beans>
The actual client code is specified in the HelloWorldClient
class which exposes a sayHello()
method that takes as input a Person
object. The helloworldRequesterBean
previously defined in the cxf-requester.xml
is auto wired using the corresponding annotation.
package com.codenotfound.client;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import com.codenotfound.services.helloworld.Greeting;
import com.codenotfound.services.helloworld.HelloWorldPortType;
import com.codenotfound.services.helloworld.Person;
public class HelloWorldClient {
private static final Logger LOGGER =
LoggerFactory.getLogger(HelloWorldClient.class);
@Autowired
private HelloWorldPortType helloWorldRequesterBean;
public String sayHello(Person person) {
Greeting greeting = helloWorldRequesterBean.sayHello(person);
String result = greeting.getText();
LOGGER.info("result={}", result);
return result;
}
}
Creating The Provider (Service) #
Creating a CXF service using Spring is done by specifying a jaxws:endpoint
bean as shown in the below cxf-provider.xml
. In addition to a bean name, the implementer class name and the address at which the service will be published need to be specified. In other words, the below configuration tells CXF how to route requests received by the servlet to the service-implementation code.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
<jaxws:endpoint id="helloWorldProviderBean"
implementor="com.codenotfound.endpoint.HelloWorldImpl" address="/helloworld">
</jaxws:endpoint>
</beans>
For the provider, the CXF Spring configuration is kept in a separate file that is imported in the main context-provider.xml
shown below.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- import the CXF provider configuration -->
<import resource="classpath:META-INF/spring/cxf-provider.xml" />
</beans>
Java web applications use a deployment descriptor file to determine how URLs map to servlets and other information. This file is named web.xml
, and resides in the app’s WAR under the WEB-INF
directory. The below web.xml
defines the CXFServlet
and maps all request on '/codenotfound/services/*'
to this servlet.
In this example, a Spring context is used to load the previous defined CXF provider configuration. Spring can be integrated into any Java-based web framework by declaring the ContextLoaderListener
and using a contextConfigLocation to set which context file(s) to load.
Note that if a specific
'contextConfigLocation'
context parameter is not specified, CXF looks for a context with the file namecxf-servlet.xml
.
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:META-INF/spring/context-provider.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>cxf</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>cxf</servlet-name>
<url-pattern>/codenotfound/services/*</url-pattern>
</servlet-mapping>
</web-app>
The HelloWorldImpl
class contains the implementation of the Hello World service. It implements the sayHello()
method of the HelloWorldPortType
interface which was automatically generated by the 'cxf-codegen-plugin'
. The method takes a Person
object as input and generates a Greeting
object that is returned.
package com.codenotfound.endpoint;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.codenotfound.services.helloworld.Greeting;
import com.codenotfound.services.helloworld.HelloWorldPortType;
import com.codenotfound.services.helloworld.ObjectFactory;
import com.codenotfound.services.helloworld.Person;
public class HelloWorldImpl implements HelloWorldPortType {
private static final Logger LOGGER =
LoggerFactory.getLogger(HelloWorldImpl.class);
@Override
public Greeting sayHello(Person person) {
String firstName = person.getFirstName();
LOGGER.info("firstName={}", firstName);
String lasttName = person.getLastName();
LOGGER.info("lastName={}", lasttName);
ObjectFactory factory = new ObjectFactory();
Greeting response = factory.createGreeting();
String greeting = "Hello " + firstName + " " + lasttName + "!";
LOGGER.info("greeting={}", greeting);
response.setText(greeting);
return response;
}
}
Testing The Apache CXF Web Service #
In order to verify the correct working of the provider, below HelloWorldImplTest
contains a unit test case that uses the JaxWsServerFactoryBean
to create a server endpoint. The factory bean needs an instance of the HelloWorldImpl
web service implementation and an endpoint address on which the service can be exposed. When the createServerEndpoint()
method is called it starts an embedded standalone Jetty server.
The JaxWsProxyFactoryBean
is used for creating a client proxy that is used for calling the web service implementation. The createClientProxy()
method needs the HelloWorldPortType
interface to be passed as well as the endpoint address to invoke.
package com.codenotfound.endpoint;
import static org.junit.Assert.assertEquals;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
import org.junit.BeforeClass;
import org.junit.Test;
import com.codenotfound.endpoint.HelloWorldImpl;
import com.codenotfound.services.helloworld.Greeting;
import com.codenotfound.services.helloworld.HelloWorldPortType;
import com.codenotfound.services.helloworld.Person;
public class HelloWorldImplTest {
private static String ENDPOINT_ADDRESS =
"http://localhost:9080/codenotfound/services/helloworld";
private static HelloWorldPortType helloWorldRequesterProxy;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
createServerEndpoint();
helloWorldRequesterProxy = createClientProxy();
}
@Test
public void testSayHelloProxy() {
Person person = new Person();
person.setFirstName("Jane");
person.setLastName("Doe");
Greeting greeting = helloWorldRequesterProxy.sayHello(person);
assertEquals("Hello Jane Doe!", greeting.getText());
}
private static void createServerEndpoint() {
// use a CXF JaxWsServerFactoryBean to create JAX-WS endpoints
JaxWsServerFactoryBean jaxWsServerFactoryBean =
new JaxWsServerFactoryBean();
// set the HelloWorld implementation
HelloWorldImpl implementor = new HelloWorldImpl();
jaxWsServerFactoryBean.setServiceBean(implementor);
// set the address at which the HelloWorld endpoint will be exposed
jaxWsServerFactoryBean.setAddress(ENDPOINT_ADDRESS);
// create the server
jaxWsServerFactoryBean.create();
}
private static HelloWorldPortType createClientProxy() {
// create a CXF JaxWsProxyFactoryBean for creating JAX-WS proxies
JaxWsProxyFactoryBean jaxWsProxyFactoryBean =
new JaxWsProxyFactoryBean();
// // set the HelloWorld portType class
jaxWsProxyFactoryBean.setServiceClass(HelloWorldPortType.class);
// set the address at which the HelloWorld endpoint will be called
jaxWsProxyFactoryBean.setAddress(ENDPOINT_ADDRESS);
// create a JAX-WS proxy for the HelloWorld portType
return (HelloWorldPortType) jaxWsProxyFactoryBean.create();
}
}
To test the requester we reuse the JaxWsServerFactoryBean
approach. For the client, instead of creating a proxy, SpringJUnit4ClassRunner
is used in order to allow auto-wiring the HelloWorldClient
bean. The actual test simply calls the sayHello()
method of the client and then verifies the response.
package com.codenotfound.client;
import static org.junit.Assert.assertEquals;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.codenotfound.client.HelloWorldClient;
import com.codenotfound.endpoint.HelloWorldImpl;
import com.codenotfound.services.helloworld.Person;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {"classpath:/META-INF/spring/context-requester.xml"})
public class HelloWorldClientTest {
private static String ENDPOINT_ADDRESS =
"http://localhost:9090/codenotfound/services/helloworld";
@Autowired
private HelloWorldClient helloWorldClientBean;
@BeforeClass
public static void setUpBeforeClass() throws Exception {
createServerEndpoint();
}
@Test
public void testSayHello() {
Person person = new Person();
person.setFirstName("Jane");
person.setLastName("Doe");
assertEquals("Hello Jane Doe!",
helloWorldClientBean.sayHello(person));
}
private static void createServerEndpoint() {
// use a CXF JaxWsServerFactoryBean to create JAX-WS endpoints
JaxWsServerFactoryBean jaxWsServerFactoryBean =
new JaxWsServerFactoryBean();
// set the HelloWorld implementation
HelloWorldImpl implementor = new HelloWorldImpl();
jaxWsServerFactoryBean.setServiceBean(implementor);
// set the address at which the HelloWorld endpoint will be exposed
jaxWsServerFactoryBean.setAddress(ENDPOINT_ADDRESS);
// create the server
jaxWsServerFactoryBean.create();
}
}
In addition to above unit tests, a HelloWorldImplIT
integration test is defined for which an instance of Jetty will be started, using the 'jetty-maven-plugin'
, that will host the HelloWorldImpl
. The actual web service call is made by the HelloWorldClient
.
Note that by default, the Maven integration-test phase runs test classes named
'**/IT*.java, **/*IT.java, and **/*ITCase.java'
.
package com.codenotfound;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.codenotfound.client.HelloWorldClient;
import com.codenotfound.services.helloworld.Person;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(
locations = {"classpath:/META-INF/spring/context-requester.xml"})
public class HelloWorldImplIT {
@Autowired
private HelloWorldClient helloWorldClientBean;
@Test
public void testSayHello() {
Person person = new Person();
person.setFirstName("John");
person.setLastName("Doe");
assertEquals("Hello John Doe!",
helloWorldClientBean.sayHello(person));
}
}
In order to run the above example open a command prompt and execute following Maven command:
mvn verify
Maven will download the needed dependencies, compile the code and run the unit test case. Subsequent Maven will start a Jetty server instance and run the integration test case. The result should be a successful build as shown below.
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.codenotfound.HelloWorldImplIT
jan 07, 2018 7:48:22 AM org.springframework.test.context.support.DefaultTestContextBootstrapper getDefaultTestExecutionListenerClassNames
INFO: Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
jan 07, 2018 7:48:22 AM org.springframework.test.context.support.DefaultTestContextBootstrapper instantiateListeners
INFO: Could not instantiate TestExecutionListener [org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [org/springframework/transaction/interceptor/TransactionAttribute]
jan 07, 2018 7:48:22 AM org.springframework.test.context.support.DefaultTestContextBootstrapper instantiateListeners
INFO: Could not instantiate TestExecutionListener [org.springframework.test.context.transaction.TransactionalTestExecutionListener]. Specify custom listener classes or make the default listener classes (and their required dependencies) available. Offending class: [org/springframework/transaction/interceptor/TransactionAttributeSource]
jan 07, 2018 7:48:22 AM org.springframework.test.context.support.DefaultTestContextBootstrapper getTestExecutionListeners
INFO: Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1e88b3c, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@42d80b78, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@3bfdc050, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1bce4f0a]
jan 07, 2018 7:48:22 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [META-INF/spring/context-requester.xml]
jan 07, 2018 7:48:23 AM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from class path resource [META-INF/spring/cxf-requester.xml]
jan 07, 2018 7:48:23 AM org.springframework.context.support.GenericApplicationContext prepareRefresh
INFO: Refreshing org.springframework.context.support.GenericApplicationContext@192b07fd: startup date [Sun Jan 07 07:48:23 CET 2018]; root of context hierarchy
07:48:24.427 [qtp1674899618-24] INFO c.c.endpoint.HelloWorldImpl - firstName=John
07:48:24.431 [qtp1674899618-24] INFO c.c.endpoint.HelloWorldImpl - lastName=Doe
07:48:24.431 [qtp1674899618-24] INFO c.c.endpoint.HelloWorldImpl - greeting=Hello John Doe!
07:48:24.519 [main] INFO c.c.client.HelloWorldClient - result=Hello John Doe!
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.847 s - in com.codenotfound.HelloWorldImplIT
[INFO]
[INFO] Results:
[INFO]
[INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0
[INFO]
[INFO]
[INFO] --- jetty-maven-plugin:9.4.8.v20171121:stop (stop-jetty) @ cxf-jaxws-jetty-xml-config ---
[INFO]
[INFO] --- maven-failsafe-plugin:2.20.1:verify (default) @ cxf-jaxws-jetty-xml-config ---
[INFO] Stopped ServerConnector@660b1a9d{HTTP/1.1,[http/1.1]}{0.0.0.0:9090}
[INFO] Stopped scavenging
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 10.652 s
[INFO] Finished at: 2018-01-07T07:48:24+01:00
[INFO] Final Memory: 34M/341M
[INFO] ------------------------------------------------------------------------
This concludes the CXF contract first Hello World web service example. If you found this post helpful or have any questions or remarks, please leave a comment.