2

我在本地主机上有一个工作项目,但是当我部署项目时,我收到了这个错误,我不知道是什么导致了这种情况发生。

 MappingException: Class 'PremiumPharma\SystemBundle\Entity\User' does not exist

这是堆栈跟踪

in /home/sy2/public_html/temp/symfony/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/MappingException.php line 96
at MappingException::nonExistingClass('PremiumPharma\SystemBundle\Entity\User') in /home/sy2/public_html/temp/symfony/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php line 43
at RuntimeReflectionService->getParentClasses('PremiumPharma\SystemBundle\Entity\User') in /home/sy2/public_html/temp/symfony/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/AbstractClassMetadataFactory.php line 267

编辑 1 我确实注意到探查器中有一些错误,因为它说 5 个无效实体,并且有一些映射错误,我得到了修复。重新上传后,我仍然有同样的问题。我也尝试清空缓存,但仍然收到相同的错误。

编辑 2

这是我的 appKernal

<?php

use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;

class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
            new Symfony\Bundle\SecurityBundle\SecurityBundle(),
            new Symfony\Bundle\TwigBundle\TwigBundle(),
            new Symfony\Bundle\MonologBundle\MonologBundle(),
            new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
            new Symfony\Bundle\AsseticBundle\AsseticBundle(),
            new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
            new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
            new PremiumPharma\SystemBundle\PremiumPharmaSystemBundle(),
            new FOS\UserBundle\FOSUserBundle(),
        );

        if (in_array($this->getEnvironment(), array('dev', 'test'))) {
            $bundles[] = new Acme\DemoBundle\AcmeDemoBundle();
            $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
            $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
            $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
        }

        return $bundles;
    }

    public function registerContainerConfiguration(LoaderInterface $loader)
    {
        $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
    }
}

编辑 3

根据 J.Mose 最后的评论,这是一个 unix/windows 冲突,因为我的本地机器是 windows 而服务器是 Unix。我不得不重命名所有文件以完全匹配类名。

4

3 回答 3

6

您是否在此环境中部署了旧版本?

如果是,您是否在部署之前删除了所有应用程序的文件?如果您的项目中不再存在(或重命名)实体的旧版本,它可能会引发这种映射错误。

或者,如果在所有环境中都启用了带有实体的捆绑包,请检查您的 AppKernel.php。

此外,如果应用程序部署在 Unix 环境中(针对本地 Windows),请检查您的实体名称是否与 php 文件完全相同(因为 Windows 不区分大小写)

于 2014-08-17T08:38:55.747 回答
0

当我将 EasyAdminBundle 和 FOSUserBundle 与 Symfony 3.3.x 一起使用时,向我显示了这个错误。

解决方案很简单:首先是必要的验证 app/config/config.yml 在我的情况下,错误是 Bundle 的名称:

fos_user:
db_driver: orm # other valid values are 'mongodb' and 'couchdb'
firewall_name: main
user_class: BackendBundle\Entity\User

清理缓存后:

php bin/console cache:warmup

这是我的解决方案

于 2017-08-15T17:48:56.530 回答
0

这个问题刚刚发生在我身上,我已经通过将供应商名称添加到 config.yml 文件中的目录路径来修复它。

第 5 步:配置 FOSUserBundle

应用程序/config/config.yml

fos_user:

db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'propel'
firewall_name: main
user_class: AppBundle\Entity\User

将 appBundle 更改为 Vendor\NameofYourBundle\Entity\User

于 2015-12-18T17:58:50.203 回答