cvc-complex-type.2.4.c:匹配的通配符是strict,但是找不到元素'flex:remoting-destination
的声明当我尝试构建我的文件时出现此错误 我在web-application-config文件中写了'flex:remoting-destination' 任何人都可以帮我解决这个问题。
答案 0 :(得分:2)
您可能忘记声明flex命名空间。 将其粘贴到web-application-config.xml的顶部(注意 xmlns:flex 部分):
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:flex="http://www.springframework.org/schema/flex"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/flex
http://www.springframework.org/schema/flex/spring-flex-1.0.xsd">
答案 1 :(得分:0)
我只想向@bart
添加一些信息只有当弹簧flex的版本匹配时才会起作用。
对于这些shchema defination版本号很重要
对于spring flex 1.5.2,您应该将版本设为1.5而不是1.0
类似于弹簧3.2.1你应该给3.2而不是2.5