Symfony 2 - Class" Mingle \ StandardBundle \ Entity \ Product"不是有效的实体或映射的超类

时间:2015-06-23 05:32:02

标签: php symfony doctrine entity bundle

我在我的包Product.php中创建了一个Mingle\StandardBundle\Entity文件,如下所示:

<?php

namespace Mingle\StandardBundle\Entity;

use Doctrine\ORM\Mapping as ORM;

/*
 * @ORM\Entity
 * @ORM\Table(name="product")
 */

class Product
{
    /*
     * @ORM\Column(type="integer")
     * @ORM\ID
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
    /*
     * @ORM\Column(type="string",length=100)
     */
    protected $name;
    /*
     * @ORM\Column(type="decimal",scale=2)
     */
    protected $price;
    /*
     * @ORM\Column(type="text")
     */
    protected $description;
}
?>

在Ubuntu终端,在Symfony项目的根文件夹中,我输入了以下命令:

php app/console doctrine:generate:entities Mingle/StandardBundle/Entity/Product

我遇到了问题:

[Doctrine\ORM\Mapping\MappingException]                                      
  Class "Mingle\StandardBundle\Entity\Product" is not a valid entity or mapped super class.

即使在搜索之后我也不知道如何解决。请帮忙

1 个答案:

答案 0 :(得分:2)

注释必须放在/** */注释块内,否则无法识别。