org.springframework.beans.factory.BeanCreationException
当我使用 ResponseList bean 时,我在我的 spring 控制器中得到了一个。
Error creating bean with name 'responseList' defined in ServletContext resource [/WEB-INF/dispatcher-servlet.xml]: 1 constructor arguments specified but no matching constructor found in bean 'responseList' (hint: specify index/type/name arguments for simple parameters to avoid type ambiguities)
这是上下文部分:
<bean id="response" class="com.form.response.Response" scope="prototype"></bean>
<bean id="myController" class="com.controllers.MyController" scope="prototype">
<property name="response" ref="response"></property>
<property name="responseList" ref="responseList"></property>
</bean>
<bean id="responseList" class="carey.form.response.ResponseList">
<constructor-arg type="java.util.List">
<list>
<ref bean="response"/>
</list>
</constructor-arg>
</bean>
这是豆:
package com.form.response;
import java.util.List;
public class ResponseList {
public ResponseList() {
// TODO Auto-generated constructor stub
}
private List<Response> responseList;
public List<Response> getResponseList() {
return responseList;
}
public void setResponseList(List<Response> responseList) {
this.responseList = responseList;
}
}
谁能纠正我在这里遗漏的内容?