找不到元素 'xml-body' 的声明

来源:2-10 验证Controller

进击的盐酱

2021-03-05

错误显示:Line 2 in XML document from file [D:\apache-tomcat-9.0.34\webapps\o2o\WEB-INF\classes\spring\spring-web.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 2; columnNumber: 11; cvc-elt.1: 找不到元素 ‘xml-body’ 的声明。

我的spring-web.xml文件里面有xml-body标签,百度了一下也还是没有解决,不知道应该怎么解决了,求助老师TAT

写回答

2回答

翔仔

2021-03-05

同学好,请按照视频进行配置呀,这里我们没用xml-body呢,这个不是spring的schema,。。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd
    http://www.springframework.org/schema/mvc
    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
	<!-- 配置SpringMVC -->
	<!-- 1.开启SpringMVC注解模式 -->
	<mvc:annotation-driven />

	<!-- 2.静态资源默认servlet配置 (1)加入对静态资源的处理:js,gif,png (2)允许使用"/"做整体映射 -->
	<mvc:resources mapping="/resources/**" location="/resources/" />
	<mvc:default-servlet-handler />

	<!-- 3.定义视图解析器 -->
	<bean id="viewResolver"
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/html/"></property>
		<property name="suffix" value=".html"></property>
	</bean>
	<!-- 文件上传解析器 -->
	<bean id="multipartResolver"
		class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="defaultEncoding" value="utf-8"></property>
		<!-- 1024 * 1024 * 20 = 20M -->
		<property name="maxUploadSize" value="20971520"></property>
		<property name="maxInMemorySize" value="20971520"></property>
	</bean>

	<!-- 4.扫描web相关的bean -->
	<context:component-scan base-package="com.imooc.o2o.web" />
</beans>


0
4
进击的盐酱
原来是因为chrome没有安装插件 已解决~
2021-03-06
共4条回复

进击的盐酱

提问者

2021-03-05

我的spring-web.xml:

<?xml version="1.0" encoding="UTF-8"?>

<xml-body>

<beans xmlns="http://www.springframework.org/schema/beans"

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xsi:schemaLocation="http://www.springframework.org/schema/beans

    http://www.springframework.org/schema/beans/spring-beans.xsd

    http://www.springframework.org/schema/context

    http://www.springframework.org/schema/context/spring-context.xsd

    http://www.springframework.org/schema/mvc

    http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">


<!-- 配置SpringMVC -->

<!-- 1.开启SpringMVC注注解模式-->    

<mvc:annotation-driven />


<!-- 2.静态资源默认servlet配置 (1)加入对静态资源的处理:js,gif,png 

(2)允许使用"/"做整体映射 -->

<mvc:resources mapping="/resources/**" location="/resources/" />

<mvc:default-servlet-handler />


<!-- 3.定义视图解析器 -->

<bean id="viewResolver"

class="org.springframework.web.servlet.view.InternalResourceViewResolver">

<property name="prefix" value="/WEB-INF/html/"></property>

<property name="suffix" value=".html"></property>

</bean>

<!-- 4.扫描web相关的bean -->

<context:component-scan base-package="com.graduate.web" />

</beans>

</xml-body>

老师可以帮我看一下哪里有错吗~

0
0

Java双版本(SSM到SpringBoot)校园商铺全栈开发

SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需

5113 学习 · 8144 问题

查看课程