• Stars
    star
    138
  • Rank 255,282 (Top 6 %)
  • Language
    Java
  • Created about 8 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Enterprise & production ready SOAP webservices powered by Spring Boot & Apache CXF

Enterprise & production ready SOAP webservices powered by Spring Boot & Apache CXF

Build Status Maven Central License renovateenabled codecov versionspringboot versionjava versionapachecxf versionspringcloudsleuth versionlogstashlogbackencoder Deployed on Heroku

spring-boot-starter-cxf-logo

Features include:

  • Generating all necessary Java-Classes using JAX-B from your WSDL/XSDs (using the complementing Maven plugin cxf-spring-boot-starter-maven-plugin
  • Booting up Apache CXF within Spring Context with 100% pure Java-Configuration
  • Complete automation of Endpoint initialization - no need to configure Apache CXF Endpoints, that´s all done for you automatically based upon the WSDL and the generated Java-Classes (bringing up a nice Spring Boot 1.4.x Failure Message if you missed something :) )
  • Customize SOAP service URL and the title of the CXF generated Service site
  • Configures CXF to use slf4j and serve Logging-Interceptors, to log only the SOAP-Messages onto console
  • Extract the SoapMessages for processing in Elastic-Stack (ELK), like docker-elk
  • Tailor your own custom SOAP faults, that comply with the exceptions defined inside your XML schema
  • SOAP Testing-Framework: With XmlUtils to easy your work with JAX-B class handling & a SOAP Raw Client to Test malformed XML against your Endpoints
  • Works with JDK 8, 9 & 11ff

Documentation

This starter is part of the Community Contributions list of the official Spring Boot Starters: https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-starters (see SOAP Web Services support with Apache CXF)

There´s also an blog post describing this project: Spring Boot & Apache CXF – SOAP on steroids fueled by cxf-spring-boot-starter

The following documentation tries to get you started fast. There are also sample projects, if you'd like to see some code instead:

Initial Setup

  • Create a Spring Boot maven project. Use the spring-boot-starter-parent as a parent and the spring-boot-maven-plugin as a build plugin (you could speed that up, if you use the Spring Initializr).
  • Then append cxf-spring-boot-starter as dependency and the cxf-spring-boot-starter-maven-plugin as build-plugin (see the example cxf-boot-simple):
<dependencies>
	<dependency>
	    <groupId>de.codecentric</groupId>
	    <artifactId>cxf-spring-boot-starter</artifactId>
	    <version>2.4.1</version>
	</dependency>
</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>de.codecentric</groupId>
            <artifactId>cxf-spring-boot-starter-maven-plugin</artifactId>
            <version>2.3.0.RELEASE</version>
            <executions>
                <execution>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
  • place your .wsdl-File (and all the imported XSDs) into a folder somewhere under src/main/resources (see cxf-spring-boot-starter-maven-plugin for details)
  • run mvn generate-sources to generate all necessary Java-Classes from your WSDL/XSD
  • Implement the javax.jws.WebService annotated Interface (your generated Service Endpoint Interface (SEI) ) - it is the starting point for your development and is needed to autoconfigure your Endpoints. See the WeatherServiceEndpoint class inside the cxf-boot-simple project.
  • That´s it

Additional Configuration Options

Customize URL, where your SOAP services are published

  • create a application.properties and set the BaseURL of your Webservices via soap.service.base.url=/yourUrlHere

Customize title of generated CXF-site

  • place a cxf.servicelist.title=Your custom title here in application.properties

SOAP-Message-Logging

Activate SOAP-Message-Logging just via Property soap.messages.logging=true in application.properties (no more configuration on the Endpoint needed)

SOAP-Messages will be logged only and printed onto STDOUT/Console for fast analysis in development.

Extract the SoapMessages for processing in ELK-Stack

The cxf-spring-boot-starter brings some nice features, you can use with an ELK-Stack to monitor your SOAP-Service-Calls:

  • Extract SOAP-Service-Method for Loganalysis (based on WSDL 1.1 spec, 1.2 not supported for now - because this is read from the HTTP-Header field SoapAction, which isn´ mandatory in 1.2 any more)
  • Dead simple Calltime-Logging
  • Correlate all Log-Messages (Selfmade + ApacheCXFs SOAP-Messages) within the Scope of one Service-Consumer`s Call in Kibana via logback´s MDC, placed in a Servlet-Filter
HowTo use
  • Activate via Property soap.messages.extract=true in application.properties
  • Add a logback-spring.xml file to src/main/resources (otherwise the feature will not be activated) and configure the logstash-logback-encoder (which is delivered with this spring-boot-starter), like:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <include resource="org/springframework/boot/logging/logback/base.xml"/>
    <logger name="org.springframework" level="WARN"/>
    <!-- more logging config here -->
    
    
    <!-- Logstash-Configuration -->
	<!-- For details see https://github.com/logstash/logstash-logback-encoder/tree/logstash-logback-encoder-4.5 -->
	<appender name="logstash" class="net.logstash.logback.appender.LogstashTcpSocketAppender">
		<!-- You may want to configure a default instance, this could be done like
		<destination>${LOGANALYSIS_HOST:-192.168.99.100}:5000</destination> as discribed here:
		http://logback.qos.ch/manual/configuration.html#defaultValuesForVariables
		Set the SystemProperty with
		env LOGANALYSIS_HOST={{ loganalysis.host }}
		e.g. in a service.upstart.conf.j2, when using Ansible and deploying to Ubuntu -->
		<destination>192.168.99.100:5000</destination>
		<!-- encoder is required -->
	    <encoder class="net.logstash.logback.encoder.LogstashEncoder">
		   	<includeCallerData>true</includeCallerData>
		   	<customFields>{"service_name":"WeatherService_1.0"}</customFields>
		   	<fieldNames>
		   		<message>log-msg</message>
		   	</fieldNames>
	   	</encoder>
	   	<keepAliveDuration>5 minutes</keepAliveDuration>
	</appender>
	
	<root level="INFO">
	    <appender-ref ref="logstash" />
	</root>
</configuration>
  • Now some fields will become available in your kibana dashboard (in other words in your elasticsearch index), e.g. soap-message-inbound contains the Inbound Message
  • see all of them here ElasticsearchField.java
  • Additionally Spring Cloud Sleuth will provide detailed tracing information of your services. Sleuth will populate the Logback MDC automatically with the tracing information. You can for example retrieve the Trace-Id of the current call via MDC.get("X-B3-TraceId").
  • The default is to use the ELK stack for log analysis. With further configuration you can even extend the tracing infrastructure to use more tailored tracing tools like Zipkin.

Custom SOAP faults for XML Schema Validation Errors

The standard behavior of Apache CXF with XML validation errors (non schema compliant XML or incorrect XML itself) is to return a SOAP fault including the corresponding exception in CXF:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Server</faultcode>
         <faultstring>wrong number of arguments while invoking public de.codecentric.namespace.weatherservice.general.ForecastRequest de.codecentric.cxf.WeatherServiceEndpoint.getCityForecastByZIP(de.codecentric.namespace.weatherservice.general.ForecastRequest) throws net.bipro.namespace.BiproException with params null.</faultstring>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>

Many SOAP based standards demand a custom SOAP-Fault, that should be delivered in case of XML validation errors. To Implement that behavior, you have to:

  • Implement the Interface CustomFaultBuilder as Spring @Component
  • Override Method createCustomFaultMessage(FaultType faultContent) an give back appropriate Messages you want to see in faultstring: soap:FaultYOUR CUSTOM MESSAGE HERE
  • Override Method createCustomFaultDetail(String originalFaultMessage, FaultType faultContent) and return the JAX-B generated Object, that represents your WebService´ Fault-Details (be really careful to take the right one!!, often the term 'Exception' is used twice... - e.g. with the BiPro-Services)
  • Configure your Implementation as @Bean - only then, XML Schema Validation will be activated

Apache CXF & JAX-WS with JDK11+ together with the JavaEE/JakartaEE chaos

Since JDK8 isn't the way to go anymore, the underlying cxf-spring-boot-starter-maven-plugin had to be rebuild to support JDK11+ (but also 8, 9, 10, ...) - have a look at JDK 11 support in the docs there.

Also the JavaEE libraries were mostly deprecated in the JDK - and also moved from Oracle to JakartaEE projects on GitHub/MavenCentral. This has also already been adressed in Moved from "OLD" jaxb to "NEW" jaxb.

But there's a third point so far: Apache CXF isn't going to work fully without another dependency. I stumbled upon it, while completing the cxf-boot-simple - a sample project, which should show the usage of this cxf-spring-boot-starter in client-only mode much much better than before (see #8).

The problem is, ApacheCXF uses classes from com.sun.activation package (see new Jakarta sources on GitHub here or on Maven Central), which lead to errors when the dependecy isn't provided (see stackoverflow):

Caused by: java.lang.NoClassDefFoundError: com/sun/activation/registries/LogSupport
	at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:179) ~[javax.activation-api-1.2.0.jar:1.2.0]
	at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:85) ~[javax.activation-api-1.2.0.jar:1.2.0]
	at org.apache.cxf.attachment.AttachmentUtil.<clinit>(AttachmentUtil.java:70) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.interceptor.AttachmentOutInterceptor.handleMessage(AttachmentOutInterceptor.java:53) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.phase.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:308) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.endpoint.ClientImpl.doInvoke(ClientImpl.java:531) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:440) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:355) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.endpoint.ClientImpl.invoke(ClientImpl.java:313) ~[cxf-core-3.3.2.jar:3.3.2]
	at org.apache.cxf.frontend.ClientProxy.invokeSync(ClientProxy.java:96) ~[cxf-rt-frontend-simple-3.3.2.jar:3.3.2]
	at org.apache.cxf.jaxws.JaxWsClientProxy.invoke(JaxWsClientProxy.java:140) ~[cxf-rt-frontend-jaxws-3.3.2.jar:3.3.2]
	at com.sun.proxy.$Proxy155.getCityForecastByZIP(Unknown Source) ~[na:na]
	at de.codecentric.soap.endpoint.WeatherServiceSoapClient.getCityForecastByZIP(WeatherServiceSoapClient.java:36) ~[classes/:na]
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:na]
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:na]
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:na]
	at java.base/java.lang.reflect.Method.invoke(Method.java:567) ~[na:na]
	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:190) ~[spring-web-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:138) ~[spring-web-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:104) ~[spring-webmvc-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:892) ~[spring-webmvc-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:797) ~[spring-webmvc-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1039) ~[spring-webmvc-5.1.8.RELEASE.jar:5.1.8.RELEASE]
	... 58 common frames omitted
Caused by: java.lang.ClassNotFoundException: com.sun.activation.registries.LogSupport
	at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583) ~[na:na]
	at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) ~[na:na]
	at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[na:na]
	... 82 common frames omitted

As we provide the correct dependency with this starter here, you don't need to bother about that:

    <dependency>
        <groupId>com.sun.activation</groupId>
        <artifactId>jakarta.activation</artifactId>
        <version>${jakarta.activation.version}</version>
    </dependency>

Testing SOAP web services

Create a WebService Client
  • If you instantiate a JaxWsProxyFactoryBean, you need to set an Address containing your configured (or the standard) soap.service.base.url. To get the correct path, just autowire the CxfAutoConfiguration like:
@Autowired
private CxfAutoConfiguration cxfAutoConfiguration;

and obtain the base.url and the serviceUrlEnding (this one is derived from the wsdl:service name attribute of your WSDL) by calling

cxfAutoConfiguration.getBaseAndServiceEndingUrl()
Integrate real XML test files into your Unit-, Integration- or SingleSystemIntegrationTests

As described in this blogpost the best gut feeling one could get while writing SOAP Tests, is the usage of real XML test files. To easily marshall these into your Java classes with JAX-B, this starter brings a utility class de.codecentric.cxf.common.XmlUtils with lots of useful methods like readSoapMessageFromStreamAndUnmarshallBody2Object(java.io.InputStream fileStream, Class jaxbClass). Then you could do things inside your testcases like:

@Value(value="classpath:requests/GetCityForecastByZIPTest.xml")
private org.springframework.core.io.Resource GetCityForecastByZIPTestXml;
    
@Test
public void getCityForecastByZIP() throws WeatherException, BootStarterCxfException, IOException {
    GetCityForecastByZIP getCityForecastByZIP = XmlUtils.readSoapMessageFromStreamAndUnmarshallBody2Object(GetCityForecastByZIPTestXml.getInputStream(), GetCityForecastByZIP.class);
...
}
SOAP Raw client

Enables automatic testing of malformed XML Requests (e.g. for Testing your Custom SOAP faults) with the de.codecentric.cxf.soaprawclient.SoapRawClient. To use it in your Testcases, initialize the SoapRawClient inside a @Configuration annotated Class like this:

@Bean
public SoapRawClient soapRawClient() throws BootStarterCxfException {
    return new SoapRawClient(buildUrl(), YourServiceInterface.class);
}

public String buildUrl() {
    // return something like http://localhost:8084/soap-api/WeatherSoapService
    return "http://localhost:8084" + cxfAutoConfiguration.getBaseAndServiceEndingUrl();
}

@Autowired
private CxfAutoConfiguration cxfAutoConfiguration;

Running Client-only mode

If you´d like to run Apache CXF only to call other SOAP web services but don´t want to provide one for yourself, than booting up a complete server is a bit to much for you. Therefore you´re also able to deactivate the Complete automation of Endpoint initialization feature, which only makes sense if you have an Endpoint to fire up. You can deactivate it with the following propery in your application.propteries:

endpoint.autoinit=false

Concepts

Complete automation of Endpoint initialization

100% contract first approach

Taking into account a 100% contract first development approach there shouldn´t be a single reason, why one has to manually configure Endpoints in Apache CXF - because pretty much every piece of information that is necessary to configure them should be available through the WSDL. Since the start of this spring-boot-starter project, this was a thought that didn´t let me go.

To understand, how the complete automation of Endpoint initialization is implemented in the cxf-spring-boot-starter, let´s first have a look on how the initialization works without the help of the starter. To instantiate & publish a org.apache.cxf.jaxws.EndpointImpl, we need the SEI implementing class and the generated WebServiceClient annotated class. In a non-automated way to use Apache CXF to fire up JAX-WS endpoints, this is done with code like this:

	@Bean
	public WeatherService weatherService() {
	    return new WeatherServiceEndpoint();
	}

    @Bean
    public Endpoint endpoint() {
        EndpointImpl endpoint = new EndpointImpl(springBus(), weatherService());
        endpoint.setServiceName(weather().getServiceName());
        endpoint.setWsdlLocation(weather().getWSDLDocumentLocation().toString());
        endpoint.publish(serviceUrlEnding());
        return endpoint;
    }

	@Bean
	public Weather weather() {
	    // Needed for correct ServiceName & WSDLLocation to publish contract first incl. original WSDL
	    return new Weather();
	}

The easier parts are the SpringBus, which we already have instantiated in our CxfAutoConfiguration, and the serviceUrlEnding, which is constructed from the configurable base url and the WSDL tag´s service name content. To instantiate the EndpointImpl, set the service name and the WSDL location correctly, we need the SEI implementing class (which you have to write yourself, because it´s the starting point for your implementation) and the generated WebServiceClient annotated class.

Scanning...

Because a spring-boot-starter is a generic thing everybody can use just via including it in the pom, these two classes are not fixed - they are always generated or derived from generated classes. Therefore we have to search for them - according to some things we know. The search is done with the help of Spring´s ClassPathScanningCandidateComponentProvider (instead of using the really nice fast-classpath-scanner, which didn´t work well in this use case).

Either scanning framework you use, self written or library - any of them will be much faster, if you have the package names of the searched classes. In some scenarios -escpecially with the ClassPathScanningCandidateComponentProvider used here - you have to know the packages, otherwise scanning will fail (because it tries to double-scan the package org.springframework itself). So to search for the WebServiceClient annotated class and the SEI itself (which we need to scan for the SEI implementation, which is only characterized due to the fact of implementing the SEI), we need to somehow know their package beforehand.

Here cxf-spring-boot-starter-maven-plugin comes to our rescue. With the new 1.0.8´s feature Extract the targetNamespace from the WSDL, generate the SEI and WebServiceClient annotated classes´ package names from it & write it together with the project´s package name into a cxf-spring-boot-maven.properties the package names are extracted into a cxf-spring-boot-maven.properties file inside your project.buildpath while a mvn generate-sources` is ran. The package name of the WebServiceClient annotated class and the SEI are derived from the WSDL:

To get this 100% right, we need to use the same mechanism as the jaxws-maven-plugin, which itself uses WSimportTool of the JAXWS-RI implementation, to obtain the package-Name from the WSDL file, where the classes are generated to. The WSDL´s targetNamespace is used to generate the package name. If you have targetNamespace="http://www.codecentric.de/namespace/weatherservice/" for example, your package will be de.codecentric.namespace.weatherservice. One can find the code used to generate the package name in the WSDLModeler at line 2312 (This algorithm is specified in the JAXB spec. So we rely onto it):

    String wsdlUri = document.getDefinitions().getTargetNamespaceURI();
    return XJC.getDefaultPackageName(wsdlUri);

The package name of the SEI implementing class is a bit more of a guesswork, because this class could literally reside everywhere. BUT: If you start a project to use a spring-boot-starter, the 99,9% case will be to start with a Maven pom - and even faster through the usage of the Spring initializr. It should be safe to rely on that and just guess the package name from your project´s pom. This will in 99,9% of all cases contain your SEI implementing class, which is you´re entry point to develop a SOAP web service with this starter and CXF.

Auto initialize the Endpoint!

Complete automation of endpoint initialization

Now having the package names of every needed class residing in the cxf-spring-boot-maven.properties file after a run of mvn generate-sources, using Spring´s ClassPathScanningCandidateComponentProvider to scan for the WebServiceClient annotated class is easy - just adding a new AnnotationTypeFilter and voila we´ve got the class. Obtaining the class of an interface which has some annotation isn´t possible with the Spring scanner at first sight (and therefore we had a long experimenting phase with the fast-classpath-scanner). But looking a bit deeper, this is also possible - just via a really small hack :) , which only means to override the ClassPathScanningCandidateComponentProvider:

ClassPathScanningCandidateComponentProvider scanningProvider = new ClassPathScanningCandidateComponentProvider(false) {
    @Override
    protected boolean isCandidateComponent(AnnotatedBeanDefinition beanDefinition) {
        return true;
    }
};  

Now we´re able to scan for the SEI. And with that and adding the AssignableTypeFilter we also get the needed SEI implementing class.

Having all the three necessary classes at hand, we can easiely and automatically fire up a org.apache.cxf.jaxws.EndpointImpl!

If you start your Spring Boot application and everything went fine, then you should see some of those log messages inside your console:

[...] INFO 83684 --- [ost-startStop-1] d.c.c.a.WebServiceAutoDetector           : Found WebServiceClient class: 'de.codecentric.namespace.weatherservice.Weather'
[...] INFO 83684 --- [  restartedMain] d.c.c.a.WebServiceAutoDetector           : Found Service Endpoint Interface (SEI): 'de.codecentric.namespace.weatherservice.WeatherService'
[...] INFO 83684 --- [  restartedMain] d.c.c.a.WebServiceAutoDetector           : Found SEI implementing class: 'WeatherServiceEndpoint'
Deactivate autoinitialization

Although it should be a great feature to be able to work 100% contract first, there might be situations, where one wants to deactivate it. E.g. while running in client-only mode.

Because there is (& sadly will be) no @ConditionalOnMissingProperty in Spring Boot, we need to use a workaround:

     @Bean
     @ConditionalOnProperty(name = "endpoint.autoinit", matchIfMissing = true)
     public Endpoint endpoint() throws BootStarterCxfException ...

To get the desired deactivation flag nevertheless, we need to use the @ConditionalOnProperty in an interesting way :) With the usage of matchIfMissing = true and name = "endpoint.autoinit" the autoinitialization feature is activated in situations, where the property is missing or is set to true. Only, if endpoint.autoinit=false the feature is disabled (which is quite ok in our use-case).

Setting the URL of the endpoint

You can manually specify the url of the Service Endpoint using the spring property: soap.service.publishedEndpointUrl. This can be handy if your application is behind a reverse proxy and the resulting WSDLs don't reflect that.

Known limitations

Using devtools with mvn spring-boot:run

If you want to use the well known Spring Boot Developer Tools (devtools) - no problem. As long as you don´t want to use mvn spring-boot:run. Because of the devtools make usage of the 2 separate classloaders the scanned, found and instantiated classes aren´t valid inside the other classloader and you could get into trouble. This is only in combination with the Complete automation of Endpoint initialization feature and the starting method mvn spring-boot:run. All the other starting mechanisms of Spring Boot will work as expected (java -jar service.jar, Starting inside the IDE via Run as... or in mvn test).

Sample projects

For better documentation and usability overview of the cxf-spring-boot-starter, this project now also provides sample projects.

  • cxf-boot-simple: Full example incl. Endpoint implementation, Tests, WSDL files with XSD includes, Custom Faults etc.
  • cxf-boot-simple-client: Client example, using the cxf-spring-boot-starter in Client only mode

That we are able to test the second project in client-only mode, we should somehow run the first sample project on a Cloud provider like Heroku.

Deploying cxf-boot-simple on Heroku

On Heroku the current Java environment supports JDKs newer than JDK8, which is needed to successfully build our cxf-spring-boot-starter (which now has build in JDK8, 9, 11 & 12 support).

The default JDK in Heroku is currently version 8, according to the docs we have to create a system.properties file inside the root of our application to configure this:

# Heroku configuration file
# by default, Heroku uses JDK8, which isn't able to build our cxf-spring-boot-starter (although it can be used with JDK8)
# see https://devcenter.heroku.com/articles/java-support#specifying-a-java-version
java.runtime.version=12
# we also need to specify the Maven version (see https://github.com/codecentric/cxf-spring-boot-starter/issues/48)
# maven.version=3.6.0
# but as there is no support for Maven >3.3.9 on Heroku, we need to switch to https://github.com/takari/maven-wrapper
# which is also the recommended way to use Maven on Heroku https://devcenter.heroku.com/articles/java-support#specifying-a-maven-version

But then we'll soon find ourselfs in the hell of an old Maven version! Currently Heroku only supports Maven <=3.3.9, which leads to the following build exception on Heroku (see #48 also):

Error injecting: org.jvnet.jax_ws_commons.jaxws.MainWsImportMojocom.google.inject.ProvisionException: Unable to provision

Changing the Maven version inside the system.properties file doesn't help much, since Heroku doesn't support newer versions. Also a provided mvnw maven-wrapper configuration isn't picked up successfully (which should have helped us get out of this help):

-----> Java app detected

-----> Installing JDK 12... done

-----> Installing Maven 3.3.9... done

-----> Executing: mvn -DskipTests clean dependency:list install

       [INFO] Scanning for projects...

Deploying cxf-boot-simple on Heroku with Docker

Now that we don't have a current Maven version, we need to have a look for alternatives. But hey, there's also this alternative way of deploying to Heroku: Docker!

According to the docs, we only need a Dockerfile inside our sample project:

# Docker multi-stage build

# 1. Building the App with Maven
FROM maven:3-jdk-11

ADD . /cxfbootsimple
WORKDIR /cxfbootsimple

# Just echo so we can see, if everything is there :)
RUN ls -l

# Run Maven build
RUN mvn clean install


# Just using the build artifact and then removing the build-container
FROM openjdk:11-jdk

MAINTAINER Jonas Hecht

VOLUME /tmp

# Add Spring Boot app.jar to Container
COPY --from=0 "/cxfbootsimple/target/cxf-boot-simple-*-SNAPSHOT.jar" app.jar

# Fire up our Spring Boot app by default
CMD [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]

And we need a heroku.yml inside the root of our project:

build:
  docker:
    web: /cxf-spring-boot-starter-samples/cxf-boot-simple/Dockerfile

Now we need to set the Heroku stack to container (we should do that maybe better inside a app.yml?!):

heroku stack:set container

The next push should start our sample app inside a Docker container running on Heroku :)

Error R14 (Memory quota exceeded)

To prevent a Memory quota exceeded error:

2019-07-24T02:58:48.253177+00:00 heroku[web.1]: Process running mem=836M(163.4%)
2019-07-24T02:58:48.253243+00:00 heroku[web.1]: Error R14 (Memory quota exceeded)
2019-07-24T02:58:55.236933+00:00 heroku[web.1]: State changed from starting to crashed
2019-07-24T02:58:55.111947+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2019-07-24T02:58:55.111947+00:00 heroku[web.1]: Stopping process with SIGKILL
2019-07-24T02:58:55.217642+00:00 heroku[web.1]: Process exited with status 137

we should configure our JVM running inside the Docker container to not base it's memory allocation on the OS reports, since we do run inside a container now! See https://devcenter.heroku.com/articles/java-memory-issues#configuring-java-to-run-in-a-container

But as https://aboullaite.me/docker-java-10/ points out, the Java 9 configuration with -XX:+UseContainerSupport is now defaulting to true.

If we would run on Java 9 on, we would have to tweak our java -jar command:

# Fire up our Spring Boot app by default
CMD [ "sh", "-c", "java $JAVA_OPTS -XX:+UseContainerSupport -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]

As I like explicitely setting things we rely on, let's also leave this option set for JDK 10+.

But hey, we switched our Heroku environment from web! The web stack type automatically detects Java apps - and provides the correct Xms JAVA_OPTS configuration - see https://devcenter.heroku.com/articles/java-memory-issues#heroku-memory-limits:

The default support for most JVM-based languages sets -Xss512k and sets Xmx dynamically based on dyno type. These defaults enable most applications to avoid R14 errors.

But as we are using Heroku stack type container now, these options might not be provided anymore?!

Let's double check the configuration of our Heroku container dyno! Execute heroku run printenv to see all environment variables inside:

$ heroku run printenv
Running printenv on ⬢ cxf-boot-simple... up, run.7988 (Free)
JAVA_URL_VERSION=11.0.4_11
HEROKU_EXEC_URL=https://exec-manager.heroku.com/a3ea58e6-d7b3-4fa8-8148-5567be41e46f
PORT=13303
JAVA_BASE_URL=https://github.com/AdoptOpenJDK/openjdk11-upstream-binaries/releases/download/jdk-11.0.4%2B11/OpenJDK11U-jdk_
HOME=/
PS1=\[\033[01;34m\]\w\[\033[00m\] \[\033[01;32m\]$ \[\033[00m\]
JAVA_VERSION=11.0.4
TERM=xterm-256color
COLUMNS=160
PATH=/usr/local/openjdk-11/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
JAVA_OPTS=
LANG=C.UTF-8
JAVA_HOME=/usr/local/openjdk-11
PWD=/
LINES=32
DYNO=run.7988

And THERE WE ARE: JAVA_OPTS is empty!

If you have a look at the default web stack configuration on Heroku, this variable should have the following configuration:

JAVA_OPTS=-Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8

So let's tweak our cxf-boot-simple Dockerfile:

# Fire up our Spring Boot app by default
CMD [ "sh", "-c", "java -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8 -XX:+UseContainerSupport -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]

Now we should have configured our Java app running inside Docker according to the standard web Heroku stack (see https://devcenter.heroku.com/articles/java-memory-issues#heroku-memory-limits).

Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch

Our original Heroku Procfile did contain the setting of the $PORT variable so that Spring Boot is able to launch it's internal Tomcat accordingly:

web: java -Dserver.port=$PORT -jar cxf-spring-boot-starter-samples/cxf-boot-simple/target/cxf-boot-simple-*-SNAPSHOT.jar

And this configuration is also needed inside our Dockerfile! Because https://devcenter.heroku.com/articles/container-registry-and-runtime#dockerfile-commands-and-runtime states:

The web process must listen for HTTP traffic on $PORT, which is set by Heroku. EXPOSE in Dockerfile is not respected, but can be used for local testing. Only HTTP requests are supported.

So let's tweak our cxf-boot-simple Dockerfile again:

# Fire up our Spring Boot app by default
CMD [ "sh", "-c", "java -Dserver.port=$PORT -Xmx300m -Xss512k -XX:CICompilerCount=2 -Dfile.encoding=UTF-8 -XX:+UseContainerSupport -Djava.security.egd=file:/dev/./urandom -jar /app.jar" ]

Now the $PORT environment variable should be used to fire up our Spring Boot app. To verify this, execute the Docker container locally:

docker build . --tag cxfbootsimple
docker run -e "PORT=8095" cxfbootsimple
# look for container id
docker ps 
docker exec -it containerId bash
curl localhost:8095/my-foo-api -v

Finally our cxf-boot-simple app is accessible at https://cxf-boot-simple.herokuapp.com/my-foo-api

Contribution

If you want to know more or even contribute to this Spring Boot Starter, maybe you need some information like:

More Repositories

1

spring-boot-admin

Admin UI for administration of spring boot applications
Java
12,142
star
2

chaos-monkey-spring-boot

Chaos Monkey for Spring Boot
Java
889
star
3

helm-charts

A curated set of Helm charts brought to you by codecentric
Mustache
592
star
4

spring-boot-starter-batch-web

Java
263
star
5

gopass-ui

gopass CLI + UI = visual cross-platform password manager for teams
TypeScript
236
star
6

hikaku

A library that tests if the implementation of a REST-API meets its specification.
Kotlin
194
star
7

javafxsvg

Java
132
star
8

NSMenuFX

Java
131
star
9

spring-batch-javaconfig

Java
74
star
10

computer-vision-drone

JavaScript
67
star
11

androidtestktx

Kotlin DSL for Espresso and UIAutomator.
Kotlin
66
star
12

merge-request-notifier

This app shows your merge requests grouped by projects and WIP status. It is accessible from the system tray.
TypeScript
48
star
13

net_automatic_interface

.Net Source Generator for Automatic Interfaces
C#
46
star
14

spring-samples

Java
43
star
15

aws-codepipelines-dashboard

Java
33
star
16

springboot-maven3-centos

S2I builder image for building and running maven based Spring Boot applications
Shell
30
star
17

reedelk-runtime

Reedelk Runtime Platform Community Edition
Java
27
star
18

jenkins-scripts

A repository containing useful scripts for the jenkins script console
Groovy
27
star
19

java8-examples

Some examples for the features introduced in Java 8
Java
25
star
20

kubebuilder-starwars-example

Demo example for a kubernetes custom CRD build with kubebuilder
Go
25
star
21

cluster-overprovisioner

Helm chart, that enables scheduled scaling of a target resource, intended to be add overprovisioning to an autoscaling k8s cluster.
Smarty
24
star
22

gatling-jdbc

JDBC support for Gatling
Scala
23
star
23

jmeter-graph-maven-plugin

ein Maven-Plugin mit dem man aus JMeter *.jtl Dateien Graphen zeichnen lassen kann
Java
22
star
24

example-google-sheet-as-database

TypeScript
22
star
25

spring-boot-monitoring-sample

Java
22
star
26

springboot-sample-app

Minimal Spring Boot sample app
Java
21
star
27

codecentric.AI-bootcamp

Kurs Inhalte für das codecentric.AI Bootcamp.
Jupyter Notebook
21
star
28

habitcentric

A microservice demo application showcasing cloud-native technologies
Java
20
star
29

cxf-spring-boot-starter-maven-plugin

Maven plugin complementing cxf-spring-boot-starter
Java
20
star
30

event-based-shopping-system

Event-Based-Shopping-System using Spring Boot and Apache Kafka (based on Movie Database @TobiasFlohre)
Java
18
star
31

elasticsearch-shield-kerberos-realm

Kerberos/SPNEGO custom realm for Elasticsearch Shield 2.0
Java
16
star
32

spa

Simple, O/RM inspired persistence library for Android
Java
16
star
33

apple-swift-playground

Swift
15
star
34

serverless-plugin-cloudwatch-dashboard

JavaScript
14
star
35

single-page-application-server

A base image for single page applications.
Java
14
star
36

job-dsl-promotions-plugin

Extension point for "JobDSL Plugin" that extends it with "Promoted Builds Plugin" features
Java
14
star
37

jenkins-deployment-dashboard-plugin

Jenkins plugin for a deployment dashboard
Java
14
star
38

kibconfig

A small library to sync Kibana config objects (dashboards, visuals, searches, etc...) with a local directory
JavaScript
13
star
39

conference-app

Hackergarden conference app
Java
13
star
40

DevOpsTraining

Python
12
star
41

dotnet_gitlab_code_quality

Convert .Net code quality reports into gitlab code quality reports
C#
12
star
42

soccer-prediction-2014

R
12
star
43

codecentric-cv-latex

LaTeX Vorlage für die intern genutzten CVs
TeX
12
star
44

android-timer

Java
12
star
45

codecentric-reveal-template

Template for reveal.js codecentric presentations
JavaScript
11
star
46

cleware-build-traffic-light-jenkins-connector

Connects the Cleware GmbH's traffic light to your Jenkins builds
Shell
11
star
47

spring-boot-starter-admin-client

Starter JAR for enabling registration of applications at the spring-boot-admin
Java
11
star
48

from-keras-to-production-workshop

HTML
10
star
49

event-processing-sample

Examples for the article: Event-driven Microservices & Event Processing
Java
10
star
50

web-clip

A Chrome extension to extract structured data from any web page and store it to a Solid Pod.
TypeScript
9
star
51

softwerkerkonf

Landing Page for SoftwerkerKonf 2020
Shell
8
star
52

elk_docker

ELK (Elasticsearch, Logstash, Kibana) as Docker Container
Shell
8
star
53

movie-database-node

JavaScript
8
star
54

zucchini

Java
8
star
55

reedelk-module-scheduler

Reedelk Scheduler module
Java
7
star
56

kong-plugin-reedelk-transformer

The Reedelk transformer plugin allows to transform the upstream request body or downstream response body by invoking a Reedelk REST flow before hitting the upstream server or before sending the response downstream back to the client.
Lua
7
star
57

TDDTrainingApplication

Training application for our TDD course
Java
7
star
58

reedelk-module-mail

Reedelk Mail module (SMTP/POP3/IMAP)
Java
6
star
59

reedelk-module-csv

Reedelk CSV module
Java
6
star
60

JavaScriptBasicsES2015

training slides and exercises for the JSBasics Training
JavaScript
6
star
61

reedelk-module-json

Reedelk JSON module
Java
6
star
62

extreme-startup-implementations

Implementations for the Extreme Startup game
Clojure
6
star
63

reedelk-modules

Maven pom file grouping all the Reedelk modules
6
star
64

reedelk-module-core

Reedelk Core module
Java
6
star
65

reedelk-module-rabbitmq

Reedelk RabbitMQ module
Java
6
star
66

reedelk-module-mongodb

Reedelk MongoDB module
Java
6
star
67

reedelk-module-xml

Reedelk XML module
Java
6
star
68

dotnet_gitlab_example

Example how to use dotnet with Gitlab
C#
6
star
69

reedelk-module-rest

Reedelk REST module
Java
6
star
70

reedelk-module-database

Reedelk JDBC Database module
Java
6
star
71

reedelk-module-file

Reedelk File module
Java
6
star
72

elasticsearch-fileimport

Import JSON files directly as documents into Elasticsearch by using the ES transport protocol (not HTTP/REST)
Java
5
star
73

reedelk-module-ftp

Reedelk FTP module
Java
5
star
74

reedelk-module-google-drive-v3

Reedelk Google Drive module
Java
5
star
75

check-staging-properties-maven-plugin

Maven-plugin for checking the equality of several staging properties files
Java
5
star
76

from-jupyter-to-production-workshop

Workshop for production-ready data science projects.
Jupyter Notebook
5
star
77

profiler-schulung

Code zu den Ãœbungen unserer Java Profiler Schulung
Java
5
star
78

log4j-logstash

A vagrant Multi Machine Installation to test log4j-logstash integration
Shell
5
star
79

smack-workshop-apps

Scala
5
star
80

jira-jenkins-plugin

The jira-jenkins-plugin integrates all necessary information from the continuous integration server Hudson into the Jira Dashboard. This way, everybody can check at a glance the state and health of your build.
Java
5
star
81

spring-school

Java
4
star
82

esp32-lora-temperature-sensor

ESP32 based LoRa transmitter that uses a DHT22 sensor to measure temperature and transmit the measurement via LoRa.
C++
4
star
83

tekton-catalog

Tekton Tasks with extended functionality compared to https://hub.tekton.dev
4
star
84

Jenkins-AppDynamics-Plugin

Jenkins plugin for AppDynamics integration, i.e. for getting performance measurements during acceptance performance test.
Java
4
star
85

spring-boot-admin-runtime-playground

Spring Boot Admin example projects including infrastructure for discovery use cases
Java
4
star
86

azure-sphere-samples

Azure Sphere MT3620 samples
C
3
star
87

hotwire-with-quarkus

Simple Todo application based an Quarkus, Qute and Hotwire
Java
3
star
88

accelerate-kickstarter-aws

Kickstarts a cloud environment with Terraform. Builds and deploys a Kotlin-based Spring Boot demo app to Amazon ECS (Fargate) using AWS CI/CD services (CodeBuild, CodeDeploy, etc.)
HCL
3
star
89

maximum-entropy

Python
3
star
90

junit-5-bdd

Java
3
star
91

spring-boot-api-first

Example project using Spring Boot and OpenAPI Processor
Java
3
star
92

reedelk-examples

Reedelk Flow Examples
Shell
3
star
93

event-driven-microservices-platform-config

3
star
94

codecentric.AI-docker

Automatic docker build for codecentric.AI bootcamp course.
Python
3
star
95

from-keras-to-production-baseimage

Base image for the workshop "From Keras TensorFlow-Models to production"
Python
3
star
96

certspotter-sd

certspotter api based prometheus service discovery
Go
3
star
97

spring-hierarchical

Spring HierarchicalThreadScope and CircularAutowired annotation to support better dependency injection for component based UI frameworks
Java
3
star
98

maschinen_meister

IoT for the Masses - Maschinen Meister is a MQTT Proxy. Meaning it adapts an outside MQTT world to an inside functional world
Java
3
star
99

edmp-sample-app

Java
2
star
100

clojure-dev-friday

Clojure
2
star