Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Symfony2 项目有问题。
我将我的工作项目移动到另一台服务器,它停止工作。这是我得到的错误:
Class Acme\NBBundle\Entity\History_state is not a valid entity or mapped super class
这是代码,似乎还可以,但它不起作用。
我认为您的问题出在您的类注释中。
试试这个:
/** * @ORM\Table(name="history_state") * @ORM\Entity */ class History_state
我想你已经忘记了@ORM\Entity。此外,如果您在此行中有关联和自定义EntityRepository,则必须正确导入它:
@ORM\Entity
* @ORM\Entity(repositoryClass="YourProject\YourBundle\Entity\YourRepository")