Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Wiki Markup
{snippet:id=beans|lang=java|url=cxf/trunk/distribution/src/main/release/samples/java_first_spring_support/webapp/WEB-INF/beans.xml?revision=HEAD}

If you want to reference a spring managed-bean, you can write like this:

Code Block
xml
xml

  <bean id="hello" class="demo.spring.HelloWorldImpl" />

  <jaxws:endpoint id="helloWorld" implementor="#hello" address="/HelloWorld" />

The bean uses the following properties:

...