In my application, we have a webservice method called getFoo() which returns a Foo object. The getFoo() method is called several hundred times a second. The Foo object is Marshalled from our Java object to the SOAP XML response using Apache CXF.
From profiling our application, we determined that the marshalling of this object (java object -> soap encoded xml) is the single greatest consumer of CPU cycles. and since our Foo object isn't changing very often, remarshalling this object each time is unnecessary.
I figured this is a common optimization and wondered how others have addressed it. I briefly looked at the CXF docs and there is a Marshall interceptor which I could probably make use of. I could create a Map which could map Foo objects to the XML encoded version. But, then a few other issues come up like how do you remove objects from this Map once they are no longer needed etc. It'd be nice if there was built in support for somehow detecting changes to the object and re-marshalling... Nothing impossible, but didn't want to reinvent the wheel.
EDIT (6/16/09): Have made some progress by making a custom BareOutInterceptor and modifying the Interceptor chain to call the custom one. The custom adds some additional logic to only call the "writeParts(....)" method which performs the marshalling only the once for a given java object. Will post solution once finished. Also, I renamed the question.