spring配置文件 applicationContext.xml中有如下配置
<bean id="loginAction" class="com.dzl.framework.auth.LoginAction" scope="prototype">
<property name="loginService">
<ref bean="loginService"/>
</property>
</bean>
报错:
No setter found for property "loginService" in class "loginAction"
解决:loginAction文件中需要定义loginService类型的成员,并设置Set属性