You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by Benson Margulies <bi...@gmail.com> on 2008/03/19 17:54:08 UTC

JAXB in the config parsing process

org.apache.cxf.configuration.spring.AbstractBeanDefinitionParser.mapElementToJaxbPropertycreates
a JAXB context every time.

Seems as if we could get that down if we could defer this until we knew all
the packages. Or, for a cheap trick, we could hang onto a map from packages
to contexts and avoid the creation overhead. That's sufficiently easy, so I
think I'll do it.