0

晚上好,

我正在尝试在 Eclipse 中设置一个简单的弹簧教程,在遵循它之后,我的两个 .xml 文件似乎有问题。

eclipse 中的错误表明元素类型“beans”必须跟在我理解的 > 或 /> 之后......但只是看着它似乎它正在被关闭。我不确定这两个文件有什么问题。

<?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:p="http://www.springframework.org/schema/p"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation="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">

  <context:component-scan base-package="net.viralpatel.spring3.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>
4

1 回答 1

0

<property name="viewClass"value ="org.springframework

除此之外,我看不出有什么不妥。右键单击您的文件并在修复后再次进行验证。

于 2013-10-17T01:48:51.483 回答