映射异常:类不存在Symfony2部署

时间:2014-08-16 20:07:25

标签: symfony deployment doctrine mappingexception

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

 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。我不得不重命名所有文件以完全匹配类名。

3 个答案:

答案 0 :(得分:6)

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

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

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

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

答案 1 :(得分:0)

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

步骤5:配置FOSUserBundle

的应用程序/配置/ 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

答案 2 :(得分: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

这是我的解决方案