霍霍12345 2015-03-10 21:00 采纳率: 100%
浏览 35064
已采纳

Spring错误,Could not instantiate bean class

在网页运行的时候出现的错误...为什么不能实例化bean
在控制层中已经用annotation配置了的
Struts has detected an unhandled exception:

Messages: Could not instantiate bean class [cn.insurance.view.action.InsuranceInfoAction]: Constructor threw exception; nested exception is java.lang.StackOverflowError
Error creating bean with name 'insuranceInfoAction' defined in file [D:\Program Files\apache-tomcat-6.0.36\webapps\InsuranceRemind\WEB-INF\classes\cn\insurance\view\action\InsuranceInfoAction.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [cn.insurance.view.action.InsuranceInfoAction]: Constructor threw exception; nested exception is java.lang.StackOverflowError
Unable to instantiate Action, insuranceInfoAction, defined for 'insuranceInfoAction_uploadExcelUI' in namespace '/'Error creating bean with name 'insuranceInfoAction' defined in file [D:\Program Files\apache-tomcat-6.0.36\webapps\InsuranceRemind\WEB-INF\classes\cn\insurance\view\action\InsuranceInfoAction.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [cn.insurance.view.action.InsuranceInfoAction]: Constructor threw exception; nested exception is java.lang.StackOverflowError

File: org/springframework/beans/BeanUtils.java
Line number: 115


Stacktraces
Unable to instantiate Action, insuranceInfoAction, defined for 'insuranceInfoAction_uploadExcelUI' in namespace '/'Error creating bean with name 'insuranceInfoAction' defined in file [D:\Program Files\apache-tomcat-6.0.36\webapps\InsuranceRemind\WEB-INF\classes\cn\insurance\view\action\InsuranceInfoAction.class]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [cn.insurance.view.action.InsuranceInfoAction]: Constructor threw exception; nested exception is java.lang.StackOverflowError


Struts.xml

/WEB-INF/jsp/dateAction/uploadExcelUI.jsp

insuranceInfoAction.java   --控制层
    @Component("insuranceInfoAction")

@Scope("prototype")
public class InsuranceInfoAction extends ModelDriverBaseAction{

//文件上传--excle后缀.xls

// public String addExcelData() {
//

//

// return "addExcelData";
// }
//上传页面-Excle
public String uploadExcelUI() {
return "uploadExcelUI";
}
}

展开全部

  • 写回答

2条回答 默认 最新

  • 霍霍12345 2015-03-10 21:16
    关注

    控制层中InsuranceInfoAction.java错误,
    public class InsuranceInfoAction extends ModelDriverBaseAction{}
    写成了,传递的应该是实体类,误写成InsuranceInfoAction,传递自己进去了
    public class InsuranceInfoAction extends ModelDriverBaseAction{}

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部