Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added a comment for the endpoint address

...

  • id specifies the id of the bean in the Spring context.
  • implementor specifies the implementation class.
  • address specifies the location the service will be hosted. This can should just be either a full address with host & port or just a patha related path. This is because CXF can't know the war name and the servlet container's listening port, CXF will update the endpoint address with the request url at the runtime.

To provide a bean name instead of a classname as an implementor, simply supply the bean-name prepended with "#", e.g. implementor="#myBean".

...