You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Sergey Beryozkin (JIRA)" <ji...@apache.org> on 2015/11/18 15:54:11 UTC

[jira] [Commented] (CXF-6682) NullpointerException in LinkBuilderImpl#getResolvedUri when only baseUri is set

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

Sergey Beryozkin commented on CXF-6682:
---------------------------------------

Done, thanks

> NullpointerException in LinkBuilderImpl#getResolvedUri when only baseUri is set
> -------------------------------------------------------------------------------
>
>                 Key: CXF-6682
>                 URL: https://issues.apache.org/jira/browse/CXF-6682
>             Project: CXF
>          Issue Type: Bug
>          Components: JAX-RS
>    Affects Versions: 3.1.4
>            Reporter: Christoph Berg
>
> The {{LinkBuilderImpl}} does not initialize its {{UriBuilder}} property with a non null value causing a NullPointerException if calling its `build` method after object construction.
> We have a testcase, which just calls {{baseUri}} followed by {{build}}. Previously we used Jersey as JAX-RS implementation where this test works. Looking at the code, Jersey initialises its property by just constructing their implementation of `UriBuilder`.
> I would assume, that changing the line
> {code}
> private UriBuilder ub;
> {code}
> to
> {code}
> private UriBuilder ub = new UriBuilderImpl();
> {code}
> would suffice.



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