appdevdebugprojectcontainer.xml中的eclipse symfony调试器错误

时间:2015-06-11 06:00:59

标签: php eclipse symfony eclipse-pdt

将Eclipse Luna与Symfony2一起使用。安装了PDT扩展,并且能够启动并运行symfony项目。但是,该文件 appdevdebugprojectcontainer.xml显示了一些错误。这并没有干扰项目的运行,但我仍然很想知道这是什么。

第一个错误发生在配置程序中。

cvc-complex-type.2.1: Element 'configurator' must have no character or element information item [children], because the type's content type is empty.

另一个错误:

<factory class="Symfony\Component\Validator\Validation" method="createValidatorBuilder"/>

错误消息

cvc-complex-type.2.4.a: Invalid content was found starting with element 'factory'. One of '{"http://symfony.com/schema/dic/services":file, "http://symfony.com/schema/dic/services":argument, "http://symfony.com/schema/dic/services":configurator, "http://symfony.com/schema/dic/services":call, "http://symfony.com/schema/dic/services":tag, "http://symfony.com/schema/dic/services":property}' is expected.

任何指针都将非常感谢

1 个答案:

答案 0 :(得分:1)

这是来自WTP XML验证器的问题。如何忽略:

  1. 打开项目属性(右键单击项目,属性)
  2. 选项卡验证,启用项目特定设置
  3. 在XML Schema和XML DTD验证器中单击设置
  4. 添加排除组
  5. 选择新组并添加规则
  6. 忽略所有* .xml文件
  7. 保存并快乐;)
  8. 我打算在未来的Symfony插件版本

    中自动创建规则