You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Andrew Block (JIRA)" <ji...@apache.org> on 2015/03/31 00:34:52 UTC

[jira] [Commented] (CAMEL-8570) NullPointerException when using CXF-component in a spring-boot application with loglevel >= INFO

    [ https://issues.apache.org/jira/browse/CAMEL-8570?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14387531#comment-14387531 ] 

Andrew Block commented on CAMEL-8570:
-------------------------------------

Part of the issue is due to the CXF bus not being registered to the Camel endpoint. When the endpoint spins up, it finds that the bus is null and instantiates it. By doing so, the BusApplicationContext refreshes the Spring context which causes the Camel Spring Boot RoutesCollector to recreate the routes in the context (routes that are spun up are shut down and reinitialized). By doing so, the route which was registered in the routeservice is no longer present which causes the nullpointerexception. To mitigate, we can define the CXFEndpoint and specify the bus as follows within the PingPongRoute class

{code}
@Autowired
	private Bus bus;
	
	@Override
	public void configure() throws Exception {
		....
		CxfEndpoint endpoint = new CxfEndpoint();
		endpoint.setAddress("/PingPong");
		endpoint.setBus(bus);
		endpoint.setServiceClass(PingPongService.class);

		// @formatter:off
		from(endpoint)	
               ....
{code}

> NullPointerException when using CXF-component in a spring-boot application with loglevel >= INFO
> ------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-8570
>                 URL: https://issues.apache.org/jira/browse/CAMEL-8570
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-core, camel-cxf, camel-spring-boot
>    Affects Versions: 2.15.0, 2.15.1
>            Reporter: Jakob Thun
>
> I get a NullPointerException when using log-level INFO or finer in a spring-boot application with CXF. 
> The exception is thrown from DefaultCamelContext.java:2449, where it tries to log how many routes have been started.
> I have made an example project to reproduce it, it's available here: 
> https://github.com/jakobthun/spring-boot-camel-cxf-logging-bug
> I have tried with camel version: 2.15.0 & 2.15-SNAPSHOT. Both have the same behaviour.
> +Andrew Block started som analysis:+
> It is running into issues in this code block which is executed at logging level >= INFO 
>         if (log.isInfoEnabled()) { 
>             // count how many routes are actually started 
>             int started = 0; 
>             for (Route route : getRoutes()) { 
>                 if (getRouteStatus(route.getId()).isStarted()) { 
>                     started++; 
>                 } 
>             } 
>             log.info("Total " + getRoutes().size() + " routes, of which " + started + " is started."); 
>             log.info("Apache Camel " + getVersion() + " (CamelContext: " + getName() + ") started in " + TimeUtils.printDuration(stopWatch.taken())); 
>         } 
> The exception occurs when the status for the route is pulled from the route service. It is null and the exception is thrown. The route is initially spun up but then refreshes when the CXF consumer is initialized. 
> Swapping it to test with a direct consumer does not result in a similar situation and startup succeeds at all logging level. 
> It appears the route is not being registered with the route service



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)