0

由于我是 Spring MVC 框架的新手并尝试学习,但抛出了异常。可能是什么原因?

我的文件中似乎有错误dispatcher-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
  <annotation-driven />
  <context:component-scan base-package="kz.controller" />
  <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/jsp/"/>
    <property name="suffix" value=".jsp"/>
  </bean>
</beans:beans>

我的控制器类是注释驱动的,但它抛出了这个错误:

HTTP 状态 500 -Servlet.init()用于 servlet 调度程序抛出异常

类型异常报告

Servlet.init()servlet 调度程序的消息引发异常

描述服务器遇到一个内部错误,阻止它完成这个请求。

例外

javax.servlet.ServletExceptionServlet.init()对于 servlet 调度程序抛出异常 :来自资源 [ ]org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException的 XML 文档中的第 23 行无效;ServletContext/WEB-INF/dispatcher-servlet.xml

4

2 回答 2

3

您的 XML 不正确。您在 beans 命名空间下定义了 bean 命名空间。正确的 XML 是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">



    <annotation-driven />
    <context:component-scan base-package="kz.controller" />
    <beans:bean id="viewResolver"
        class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <beans:property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
        <beans:property name="prefix" value="/WEB-INF/jsp/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>
</beans:beans>

通常在 spring 应用程序中 beans 模式是默认的,所以如果你将 beans 模式更改为默认值会更好,然后你可以删除所有“beans:”并将“mvc:”添加到其他标签。

于 2012-11-09T12:31:51.463 回答
0

检查错误消息。它说文件 /WEB-INF/dispatcher-servlet.xml 不是有效的 xml 文件。使用 IDE(eclipse、intellij、netbeans 等)打开文件,它应该说明文件无效的原因。

特别是错误在于

</bean>
</beans:beans>

你不需要</bean>

底线,使用一个好的IDE!我们不再需要在 60 年代使用打孔卡进行编码并希望我们的代码是正确的 :)。

于 2012-11-09T12:22:34.493 回答