匹配通配符是严格的,但没有声明可以为元素找到(The matching wildcard is st

2019-06-27 16:11发布

我使用的SpringSource工具套件3和试图实施拦截。 这是代码和错误评论:

servlet的context.xml中

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<annotation-driven />

<resources mapping="/resources/**" location="/resources/" />

<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value=".jsp" />
</beans:bean>

<beans:bean id="authInterceptor" class="com.bank.accounting.authentication.AuthInterceptor" />
<beans:bean id="authUrlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">

bean定义解析过程中发生意外错误:配置问题:无法找到BeanDefinitionParser的元素[名单]

    <beans:property name="interceptors">
        <list>

匹配通配符是严格的,但没有声明可以为元素“列表”中找到。

            <ref bean="authInterceptor" />
        </list>
    </beans:property>
    <beans:property name="mappings">
        <props>

匹配通配符是严格的,但没有声明可以为元素“道具”被发现。

            <prop key="/home">HomeController</prop>
        </props>
    </beans:property>
</beans:bean>
<beans:bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">

bean定义解析过程中发生意外错误:配置问题:无法找到BeanDefinitionParser的元素[道具]

    <beans:property name="mappings">
        <props>

匹配通配符是严格的,但没有声明可以为元素“道具”被发现。

            <prop key="/login">LoginController</prop>
        </props>
    </beans:property>
</beans:bean>
</beans:beans>

Answer 1:

<list><ref>标记属于util 命名空间 。 第一添加:

xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"

然后适当地加前缀这些声明:

<util:list>
  ...

你也可以尝试与<beans:util>



文章来源: The matching wildcard is strict, but no declaration can be found for element