Symfony2 - 在链配置的命名空间中找不到类“X"

2024-08-15php开发问题
0

本文介绍了Symfony2 - 在链配置的命名空间中找不到类“X"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我一直在寻找解决问题的方法.但我找不到任何解决方案.

I've been searching forever to solve my problem. But I can't find any solution.

当我尝试打开主页时,总是收到此错误消息:

I always get this error message when I try to open the homepage:

未捕获的异常 'DoctrineCommonPersistenceMappingMappingException' 带有消息 'The class 'TestBundleUserBundleEntityUser' is not found in the chain configured namespaces' in...

奇怪的是,我只有在我有以下 URL 时才能得到它:

The weird thing is that I only get it when I have following URL:

http://localhost/

但是当我在这个 URL 上运行它时,我没有收到任何错误,并且我的页面正在正确显示:

But when I run it on this URL I don't get any error and my page is being displayed correctly:

http://localhost/app_dev.php

我的配置看起来像这样(config.yml):

My Configuration looks like this (config.yml):

# Doctrine Configuration
dbal:
  default_connection: default
  connections:
    default:
      driver:   "%database_driver%"
      host:     "%database_host%"
      port:     "%database_port%"
      dbname:   "%database_name%"
      user:     "%database_user%"
      password: "%database_password%"
      charset:  UTF8
    test:
      driver:   "%database_driver2%"
      host:     "%database_host2%"
      port:     "%database_port2%"
      dbname:   "%database_name2%"
      user:     "%database_user2%"
      password: "%database_password2%"
      charset:  UTF8
orm:
  default_entity_manager: default
  entity_managers:
    default:
      connection: default
      mappings:
        TestUserBundle:
          type: annotation

我在我的自定义服务中这样调用 Doctrine:

And I call Doctrine in my custom service like this:

public function __construct(EntityManager $em)
{
    $repositiory = $em->getRepository('TestBundleUserBundleEntityUser');
    $this->user = $repositiory->find($_SERVER['AUTH_USER']);
}

我的 Symfony 应用程序正在 IIS Web 服务器上运行.

My Symfony Application is running on an IIS Webserver.

你们知道我哪里做错了吗?

Do you guys know where I made a mistake?

推荐答案

映射名称是 TestUserBundle 但路径是 TestBundleUserBundle,不应该它被命名为 TestBundleUserBundle 吗?此外,通常 mappingsauto_generate_proxy_classes 在开发模式下设置为 true,这可能解释了为什么它在那里工作而不是在 prod 中工作.

Mapping name is TestUserBundle but the path is TestBundleUserBundle, shouldn't it be named TestBundleUserBundle instead? Also, usually the mappings and auto_generate_proxy_classes are set to true in dev mode which might explain why it's working there and not in prod.

您可能想查看 documentation (Symfony 2.7) 它显示了你应该如何根据你的情况来配置映射.

You might want to checkout the documentation (Symfony 2.7) which shows how exactly you should be configuring the mappings depending on your case.

doctrine:
    # ...
    orm:
        # ...
        auto_mapping: true
        mappings:
            # ...
            AppBundle:
                type: xml
                dir: SomeResources/config/doctrine

映射包外的实体

doctrine:
    # ...
    orm:
        # ...
        mappings:
            # ...
            SomeEntityNamespace:
                type: annotation
                dir: "%kernel.root_dir%/../src/Entity"
                is_bundle: false
                prefix: AppEntity
                alias: App

最后但同样重要的是,在将更改应用到 config.ymlapp/config/ 目录中的文件后,请务必清除缓存目录.

Last, but not least, always clear your cache directory after applying changes to the config.yml or files in the app/config/ directory.

正如评论中提到的:您需要暂时停止任何可能正在使用 prod 目录的 PHP 进程(即,如果您已经运行了控制台服务器:运行)并重试.如果还不行,试试 这个

As mentioned in the comments: You need to temporarily stop any PHP processes that might be using the prod directory (i.e. if you've ran console server:run) and try again. If that doesn't do it, try this

这篇关于Symfony2 - 在链配置的命名空间中找不到类“X"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17