这个问题可能看起来很基本,但我一直在努力,我将非常感谢你的帮助。如何配置hessain使用DAO serviceDao返回null。下面是我的代码段。 .......
<bean id="securityService" class="com.polaris.service.SecurityServiceImpl">
<!-- any additional properties, maybe a DAO? -->
<property name="serviceDao" ref="securityDAO"/>
</bean>
<bean name="/securityService.http" class="org.springframework.remoting.caucho.HessianServiceExporter">
<property name="service" ref="securityService"/>
<property name="serviceInterface" value="com.polaris.service.SecurityService"/>
</bean>