@Configurable LTW and @Webservice
Hi,
I'm trying to use @Configurable beans with Load time weaving on Weblogic 10.3.
Everything works fine until I add a webservice in my application.
As soon as I add a simple webservice like this:
Code:
@WebService(name = "SimplePortType", serviceName = "SimpleService")
public class Simple extends SpringBeanAutowiringSupport {
// By default, all public methods are exposed as Web Services operation
public String say(String message) {
try {
System.out.println("say:" + message);
} catch (Exception ex) {
ex.printStackTrace();
}
return "Here is the message: '" + message + "'";
}
}
The autowiring of all my @Configurable classes stop working.
Do you have an idea ?
Thanks!
Thomas