Eclipse中的XML验证

时间:2013-10-17 01:37:00

标签: xml eclipse spring

晚安,

我正在尝试在eclipse中设置一个简单的spring教程,在关注它后,我的两个.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>

1 个答案:

答案 0 :(得分:0)

  

&lt; property name =“viewClass”v alue =“org.springframework

除此之外,我没有看到任何错误。右键单击您的文件,然后在修复后再次执行验证。