在spring配置文件中获取错误错误:与元素类型“beans”关联的属性“xmlns”的值不得包含'<'字符

时间:2018-04-08 11:17:59

标签: xml

  

http://www.springframework.org/schema/beans”       的xmlns:的xsi = “http://www.w3.org/2001/XMLSchema-instance”   的xmlns:TX = “http://www.springframework.org/schema/tx”       的xmlns:MVC = “http://www.springframework.org/schema/mvc”   的xmlns:上下文= “http://www.springframework.org/schema/context”       xsi:schemaLocation =“http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd          http://www.springframework.org/schema/tx   http://www.springframework.org/schema/tx/spring-tx.xsd          http://www.springframework.org/schema/mvc   http://www.springframework.org/schema/mvc/spring-mvc.xsd          http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context.xsd“>

<!-- Scans the classpath of this application for @Components to deploy as
    beans -->
<context:component-scan base-package="com.test" />

<!-- Configures the @Controller programming model -->
<mvc:annotation-driven />

<!-- Specifying the Resource location to load JS, CSS, Images etc -->
<mvc:resources mapping="/resources/**" location="/resources/" />

<!-- View Resolver -->
<bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/pages/" />
    <property name="suffix" value=".jsp" />
</bean>
<bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basename" value="classpath:messages" />
</bean>
</beans>

1 个答案:

答案 0 :(得分:0)

看起来你错过了xml文件的开头。应该看起来像这样

<?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:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

<!-- Scans the classpath of this application for @Components to deploy as
    beans -->
<context:component-scan base-package="com.test" />

<!-- Configures the @Controller programming model -->
<mvc:annotation-driven />

<!-- Specifying the Resource location to load JS, CSS, Images etc -->
<mvc:resources mapping="/resources/**" location="/resources/" />

<!-- View Resolver -->
<bean id="viewResolver"
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  <property name="prefix" value="/WEB-INF/pages/" />
  <property name="suffix" value=".jsp" />
</bean>
<bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
  <property name="basename" value="classpath:messages" />
</bean>
</beans>