CXF Method Not Found When Further Annotated
When using CXF and the JAXWS annotations to publish web services, like this:
@WebService(targetNamespace = "http://blah")
public class ClientData {
@WebMethod
public String getSomething() {
return something;
}
}
you can experience problems if you annotate the web service methods with something that spring-aop needs to process. Like when using perf4js nice @Profiled [...]
December 3, 2009
Tags: aspect, cxf, spring, spring-aop, ws Posted in: Programming
No Comments
How To Acess Target Object Behind a Spring Proxy
When annotating spring managed beans with stuff like @Transactional, spring will behind the scenes produce code, that ensures that transaction logic is applied before and after your code. Depending on the configuration, this is often done using a JDK proxy, which is a dynamically generated class implementing the bean interfaces. This dynamically generated code will [...]
June 5, 2009
Tags: Java, spring Posted in: Programming
6 Comments
SpringSource Application Platform
So, Spring Source has been able to keep a secret from us Secretly, they have been developing what looks a lot like a new application server, not like the JEE market, but with the springframework at its core. A well kept secret, which I did not see coming, even though we might have [...]
May 5, 2008
Tags: Java, JSR-277, JSR-294, OSGi, spring Posted in: Tools
2 Comments
