3

我已经检查过了,但我的错误似乎有所不同。

我收到此错误:

[2012-05-07 14:09:59] request.CRITICAL: BadMethodCallException: Undefined method 'findOperariosordenados'. The method name must start with either findBy or findOneBy! (uncaught exception) at /Users/gitek/www/uda/vendor/doctrine/lib/Doctrine/ORM/EntityRepository.php line 201 [] []

这是我的 OperarioRepository:

<?php

namespace Gitek\UdaBundle\Entity;

use Doctrine\ORM\EntityRepository;

/**
 * OperarioRepository
 *
 * This class was generated by the Doctrine ORM. Add your own custom
 * repository methods below.
 */
class OperarioRepository extends EntityRepository
{
    public function findOperariosordenados()
    {
        $em = $this->getEntityManager();
        $consulta = $em->createQuery('SELECT o FROM GitekUdaBundle:Operario o
                                        ORDER BY o.apellidos, o.nombre');

        return $consulta->getResult();
    }    
}

这是我的控制器,我在其中调用存储库:

$em = $this->getDoctrine()->getEntityManager();
$operarios = $em->getRepository('GitekUdaBundle:Operario')->findOperariosordenados();   

最后,这是我的实体:

<?php

namespace Gitek\UdaBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Gitek\UdaBundle\Entity\Operario
 *
 * @ORM\Table(name="Operario")
 * @ORM\Entity(repositoryClass="Gitek\UdaBundle\Entity\OperarioRepository")
 */
class Operario
{
    /**
     * @var integer $id
     *
     * @ORM\Column(name="id", type="integer")
     * @ORM\Id
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    private $id;

    /**
     * @var string $nombre
     *
     * @ORM\Column(name="nombre", type="string", length=255)
     */
    private $nombre;
    ----
    ----

任何帮助或线索?

提前致谢

编辑:在开发环境中工作正常,但在生产环境中没有。

4

3 回答 3

7

您已经在存储库中,不需要重新获取它。

*Repository 中的所有方法都可以与$this

另外,请注意

  • return $this->findBy();当可以使用简单的查询生成器或手工查询时,工作量太大了。
  • findBy()有三个参数,第一个是关系和getter的数组,第二个是用于排序的,见Doctrine\ORM\EntityRepository代码
  • 而不是使用原始查询...首先尝试查询生成器。看看我的样本。

你的代码

我建议你简单地做:

public function findOperariosordenados()
{
    $collection = $this->findBy( array(), array('apellidos','nombre') );
    return $collection;
} 

你只需要EntityRepository

我的存储库之一:

注意事项:

  • Order$owner与使用User实体有关系
  • 如果你真的需要一个数组,在$array = $reposiroty->getOneUnhandledContainerCreate(Query::HYDRATE_ARRAY)
  • 是a的ContainerCreateOrder延伸。虽然完全超出了这个问题的范围。Order@ORM\InheritanceType("SINGLE_TABLE")

这可能会有所帮助:

 <?php

namespace Client\PortalBundle\Entity\Repository;


# Internal
use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\QueryBuilder;
use Doctrine\ORM\Query;
use Doctrine\Common\Collections\ArrayCollection;


# Specific


# Domain objects


# Entities
use Client\PortalBundle\Entity\User;


# Exceptions



/**
 * Order Repository
 *
 *
 * Where to create queries to get details
 * when starting by this Entity to get info from.
 *
 * Possible relationship bridges:
 *  - User $owner Who required the task
 */
class OrderRepository extends EntityRepository
{

    private function _findUnhandledOrderQuery($limit = null)
    {
        $q = $this->createQueryBuilder("o")
                ->select('o,u')
                ->leftJoin('o.owner', 'u')
                ->orderBy('o.created', 'DESC')
                ->where('o.status = :status')
                ->setParameter('status',
                    OrderStatusFlagValues::CREATED
                )
                ;

        if (is_numeric($limit))
        {
            $q->setMaxResults($limit);
        }
        #die(var_dump( $q->getDQL() ) );
        #die(var_dump( $this->_entityName ) );
        return $q;
    }


    /**
     * Get all orders and attached status specific to an User
     *
     * Returns the full Order object with the
     * attached relationship with the User entity
     * who created it.
     */
    public function findAllByOwner(User $owner)
    {
        return $this->findBy( array('owner'=>$owner->getId()), array('created'=>'DESC') );
    }



    /**
     * Get all orders and attached status specific to an User
     *
     * Returns the full Order object with the
     * attached relationship with the User entity
     * who created it.
     */
    public function findAll()
    {
        return $this->findBy( array(), array('created'=>'DESC') );
    }



    /**
     * Get next unhandled order
     *
     * @return array|null $order
     */
    public function getOneUnhandledContainerCreate($hydrate = null)
    {
       return $this->_findUnhandledOrderQuery(1)
                    ->orderBy('o.created', 'ASC')
                    ->getQuery()
                    ->getOneOrNullResult($hydrate);
    }



    /**
     * Get All Unhandled Container Create
     */
    public function getAllUnhandledContainerCreate($hydrate = null)
    {
       return $this->_findUnhandledOrderQuery()
                    ->orderBy('o.created', 'ASC')
                    ->getQuery()
                    ->getResult($hydrate);
    }
}
于 2012-05-15T16:41:27.300 回答
5

你清除缓存了吗?

php app/console cache:clear --env=prod --no-debug

于 2012-05-07T14:15:18.210 回答
0

app/config/config_prod.yml有一个为学说指定的缓存驱动程序:

doctrine:
    orm:
        metadata_cache_driver: apc
        result_cache_driver: apc
        query_cache_driver: apc

我使用这些函数调用清除了 APC 缓存:

if (function_exists('apcu_clear_cache')) {
    // clear system cache
    apcu_clear_cache();
    // clear user cache
    apcu_clear_cache('user');
}

if (function_exists('apc_clear_cache')) {
    // clear system cache
    apc_clear_cache();
    // clear user cache
    apc_clear_cache('user');
    // clear opcode cache (on old apc versions)
    apc_clear_cache('opcode');
}

并清空app/cache/目录。

但是我在 prod 环境中一直收到这个错误,而在 dev 环境中一切都很好。

我终于重新启动了我的虚拟服务器,并且成功了。

这绝对让我怀疑缓存问题。下次我将尝试(优雅地)仅重新启动 Web 服务器,因为这也会清除缓存(php - 优雅的 Apache 重新启动会清除 APC 吗? - 代码日志

否则,设置apc.stat = 1http://php.net/manual/en/apc.configuration.php#ini.apc.stat/etc/php5/apache2php.ini似乎也是一个好主意,如这里建议的那样:我们是否需要在新建后重新启动 apache + APC应用程序的版本部署?

更新

我的开发服务器安装了 APC 而不是 APCu。前两个调用apcu_clear_cache()导致 PHP 致命错误,这反过来又阻止了 APC 缓存被清除。

apcu_clear_cache()因此,在调用or之前检查您的系统使用的缓存apc_clear_cache()。之后,无需重新启动虚拟机或 Web 服务器来清除缓存并摆脱令人讨厌的异常。

if添加了运行 APC 或 APCu 特定功能的块。

于 2014-10-02T20:58:23.040 回答