我正在尝试从 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
。我已经检查了关于此类错误的其他答案,但没有一个符合我的具体问题。