I have an external (i.e. unmodifiable) com.external.Money class that has a java.util.Currency field with getters and setters. In my CXF jaxws web service, I have a request object like the one below:
@XmlRootElement
public ExampleRequest {
private Money money;
public Money getMoney() { return money; }
public void setMoney(Money money) { this.money = money; }
}
When I try to start the service, I get the following error:
Exception in thread "main" com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
java.util.Currency does not have a no-arg default constructor.
this problem is related to the following location:
at java.util.Currency
at public java.util.Currency com.external.Money.getCurrency()
at com.external.Money
at public com.external.Money com.internal.ExampleRequest.getMoney()
at com.internal.ExampleRequest
So, I created a MoneyAdapter, which converts the Money into something usable by JAXB, namely a TransportableMoney class with currency stored as a String. Ideally, I would create a CurrencyAdapter but since the currency field is encapsulated by an external class, I can't hook that up (or I don't know how to).
I am trying to hook up the adapter with a package-info.java:
@XmlJavaTypeAdapters({
@XmlJavaTypeAdapter(value=MoneyAdapter.class, type=Money.class)
})
package com.internal;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapters;
import com.external.Money;
The problem is, this doesn't work. Instead of the error above, I now get:
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
java.util.Currency does not have a no-arg default constructor.
this problem is related to the following location:
at java.util.Currency
at public java.util.Currency com.external.Money.getCurrency()
at com.external.Money
I think this is happening because com.external.Money has a no-arg constructor. When it does not have a no-arg constructor, this setup seems to work.
Am I missing something here? Does anyone know how to force CXF to use the XmlAdapter?
EDIT
As Blaise Doughan pointed out, the configuration above DOES work using just the JAXB marshaller. It just doesn't work with CXF 2.6.0. Here's my main method:
SomeService ss = new SomeService();
JaxWsServerFactoryBean jwsfb = new JaxWsServerFactoryBean();
jwsfb.setServiceClass(SomeService.class);
jwsfb.setServiceBean(ss);
jwsfb.setAddress("http://localhost:9020/hello");
jwsfb.create();
maven dependencies:
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>2.6.0</version>
<scope>runtime</scope>
</dependency>
SomeService:
@WebService
@SOAPBinding(use = SOAPBinding.Use.LITERAL, style = SOAPBinding.Style.DOCUMENT)
public class SomeService {
public ExampleRequest getRequest() {
ExampleRequest request = new ExampleRequest();
request.setMoney(new Money(Currency.getInstance("USD"), BigDecimal.ONE));
return request;
}
public void setRequest(ExampleRequest req) {
// do nothing
}
}
UPDATE
Created a JIRA ticket and looks like it has already been resolved by CXF team (wow)!
ExampleRequestin the samecom.internalpackage? Also make sure you declare your adapter withextends XmlAdapter<String, Money>. Also make sure yourpackage-infoclass is being compiled? – Blaise Doughan Oct 2 '12 at 9:04