2 回答
TA贡献1797条经验 获得超6个赞
该错误表明您没有创建 bean。创建一个 xml bean 配置文件,然后为 downloadProjectRequirementdetails 方法所在的控制器创建 bean!
TA贡献1911条经验 获得超7个赞
此异常是由于 bean 问题造成的。您必须创建一个 xml bean 配置文件,然后为此控制器创建 bean。
您还可能注意到其他一些事情:您正在提供侦听器 ContextLoaderListener
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
但您没有为 spring 配置文件提供 context-param 。就像 applicationContext.xml 您必须为您的配置提供以下代码片段
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>applicationContext.xml</param-value>
</context-param>
如果您提供基于java的spring配置,意味着您当时没有使用xml文件进行spring配置,您必须提供以下代码:
<!-- Configure ContextLoaderListener to use AnnotationConfigWebApplicationContext
instead of the default XmlWebApplicationContext -->
<context-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</context-param>
<!-- Configuration locations must consist of one or more comma- or space-delimited
fully-qualified @Configuration classes. Fully-qualified packages may also
be specified for component-scanning -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>com.nirav.modi.config.SpringAppConfig</param-value>
</context-param>
添加回答
举报