1

我正在尝试从 Symfony2 应用程序中使用 Doctrine 2 的表中获取数据。在我的开发机器上运行的代码在部署到生产服务器时会引发错误。这是我的控制器之一。

public function listEntitiesAction($entity, Request $request)
{       
    $repository = $this->getDoctrine()->getRepository('AALCOInventoryBundle:' . $entity);
    $metadata = $this->getDoctrine()->getEntityManager()->getClassMetadata('AALCOInventoryBundle:' . $entity);
    $dataTable = new Datatable( $request->query->all(), $repository, $metadata, $this->getDoctrine()->getEntityManager());  
    $dataTable->makeSearch();   
    $view = $this->view($dataTable->getSearchResults(), 200)
            ->setFormat('json');
    return $this->get('fos_rest.view_handler')->handle($view);
}

上面的代码适用于我本地开发机器中的 linux 服务器。实体之一如下。

<?php
namespace AALCO\InventoryBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
 * AALCO\InventoryBundle\Entity\Uom
 *
 * @ORM\Table(name="uoms")
 * @ORM\Entity
 */
class Uom
{
    // entity stuff
}

我在 config.yml 上有教义的默认设置,这是错误。

request: ErrorException: Warning: class_parents() [<a href='function.class-parents'>function.class-parents</a>]: Class AALCO\InventoryBundle\Entity\uom does not exist and could not be loaded in 
/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php line 40 (uncaught exception) at 
/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php line 40

为所有实体运行php app/console doctrine:mapping:info返回OK。我已经检查了关于此类错误的其他答案,但没有一个符合我的具体问题。

4

1 回答 1

2

Symfony2 使用自动加载来加载带有类的文件。当您要求uow上课时,它会查找 uow.php 文件。文件名在 linux 服务器上区分大小写,因此 uow.php 和 Uow.php 是不同的文件。

您需要ucfirst$entity.

于 2012-11-16T09:17:42.733 回答