原创作者: pyzheng1
阅读:3983次
评论:5条
更新时间:2011-05-26
在部署时,指定<jaxws:endpoint 的implementor属性是需要实现类,我的这个实现类构造函数需要spring提供一个dao注入,请教如何实现?
官方文档只介绍了写出实现类的 全包路径+实现类名,如何提供构造注入?
因为我现在一启动服务,就会提示 这个实现类加载错误。
官方文档只介绍了写出实现类的 全包路径+实现类名,如何提供构造注入?
因为我现在一启动服务,就会提示 这个实现类加载错误。
5 楼 wondersman 2012-05-27 07:59
<constructor-arg index="0" ref="hdao"/>
</bean>
<jaxws:endpoint id="myService" address="/myService" implementorClass="service.impl.ServiceImpl">
<jaxws:implementor ref="#service">
</jaxws:implementor>
</jaxws:endpoint>
4 楼 zcmerjade 2012-04-06 09:24
<bean id="hello" class="org.spring.remoting.cxf.demo.HelloWorldImpl" />
<jaxws:endpoint id="helloWorld" implementor="#hello" address="/HelloWorld" />
3 楼 prettyboy434 2010-07-21 16:28
<property name="dao" ref="hdao"></property>
</bean>
<jaxws:endpoint id="myService" address="/myService" implementorClass="service.impl.ServiceImpl">
<jaxws:implementor ref="service">
</jaxws:implementor>
</jaxws:endpoint>
2 楼 ice.k 2009-06-16 15:59
1 楼 mywes 2009-05-26 13:00