0
我想创建基本的春季网络动态项目。
以下是春季图书馆名单。
找不到元素'beans'的声明。在春天
这是我的HelloWeb-servlet.xml代码。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_4.0.xsd"
bean-discovery-mode="annotated">
<context:component-scan base-package = "com.tutorialspoint" />
<bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "/WEB-INF/jsp/" />
<property name = "suffix" value = ".jsp" />
</bean>
</beans>
请帮帮我。谢谢。
xmlns看起来很奇怪,通常它有些不同请参阅https://stackoverflow.com/questions/17822466/spring-beans-dtd-and-xmlns例如 – 2017-10-19 05:54:02
@RC我该如何改变 –