在spring.xml中为spring mvc项目获取错误

问题描述 投票:0回答:1

我正在创建Spring MVC项目。

<spring-class>org.springframework.web.servlet.DispatcherServlet</spring-class>的web.xml中

我收到了这个错误

“cvc-complex-type.2.4.a:从元素'spring-class'开始发现无效内容.{"http://xmlns.jcp.org/xml/ns/javaee":servlet-class, "http:// xmlns.jcp.org/xml/ns/javaee":jsp-file, "http://xmlns.jcp.org/xml/ns/javaee":init- param, "http://xmlns.jcp.org/xml/ns/javaee":load-on-startup, "http://xmlns.jcp.org/ xml/ns/javaee":enabled, "http://xmlns.jcp.org/xml/ns/javaee":async-supported,
"http://xmlns.jcp.org/xml/ns/javaee":run-as, "http://xmlns.jcp.org/xml/ns/ javaee":security-role-ref, "http://xmlns.jcp.org/xml/ns/javaee":multipart-config}
之一是 预期。”

任何人都可以帮我解决这个问题

java xml spring spring-mvc servlets
1个回答
0
投票

没有发布完整的web.xml,很难确定,但是从你发布的内容我相信你的问题可能是连字符和类之间的空格。

你有'spring- class'但它应该是'spring-class'

© www.soinside.com 2019 - 2024. All rights reserved.