我正在尝试用 Doctrine 做我的第一个 DAO 来做一个列表方法。我的实体类是 Canales.php 在/src/model/dto 文件夹中
namespace modeldto;
use DoctrineORMMapping as ORM;
/**
* Canales
*
* @ORMTable(name="Canales")
* @ORMEntity
*/
class Canales
{
/**
* @var string
*
* @ORMColumn(name="Nombre", type="string", length=255, nullable=false)
*/
private $nombre;
/**
* @var integer
*
* @ORMColumn(name="Id", type="integer")
* @ORMId
* @ORMGeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* Class Constructor
* @param $nombre
* @param $id
*/
public function __construct($nombre, $id)
{
$this->nombre = $nombre;
$this->url = $url;
$this->imagen = $imagen;
$this->ingles = $ingles;
$this->id = $id;
}
/**
* Set nombre
*
* @param string $nombre
* @return Canales
*/
public function setNombre($nombre)
{
$this->nombre = $nombre;
return $this;
}
/**
* Get nombre
*
* @return string
*/
public function getNombre()
{
return $this->nombre;
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
}
此类是使用这些行生成的
vendor/bin/doctrine orm:convert-mapping --from-database xml config/xml/
供应商/bin/doctrine orm:生成实体 --生成注释=真 --再生实体=真 src/
我的 Dao 类(在/src/model/dao 文件夹中(
class daoGenerico{
private $entityManager;
/**
* Class Constructor
* @param $entityManager
*/
public function __construct()
{
require_once("bootstrap.php");
$this->entityManager = $entityManager;
}
/**
* @return mixed
*/
public function getEntityManager()
{
return $this->entityManager;
}
function showAction(){
$repository = $this->getEntityManager()->getRepository('modeldtoCanales');
//->find($id);
echo "..";
$productos = $repository->findAll();
echo "OK";
if (!$productos) {
throw $this->createNotFoundException(
'No product found'
);
}
else{
var_dump($productos);
}
}
}
我的引导程序.php
// bootstrap.php
use DoctrineORMToolsSetup;
use DoctrineORMEntityManager;
require_once "vendor/autoload.php";
// Create a simple "default" Doctrine ORM configuration for Annotations
$isDevMode = true;
$config = Setup::createAnnotationMetadataConfiguration(array(__DIR__."/src/model/dto"), $isDevMode);
// database configuration parameters
$conn = array(
'driver' => 'pdo_mysql',
'host' => 'localhost',
'user' => 'root',
'password' => 'root',
'dbname' => 'yoga',
'charset' => 'UTF8',
);
// obtaining the entity manager
$entityManager = EntityManager::create($conn, $config);
和我的测试.php文件
include_once('./src/model/dao/daoGenerico.php');
$daoGenerico = new daoGenerico();
$daoGenerico->showAction();
作曲家.json是这个
{
"require": {
"doctrine/orm": "2.4.*"
},
"autoload": {
"psr-0": {"": "src/"}
}
}
当我执行它时,我有这个错误
致命错误:未捕获的异常"Doctrine\ORM\Mapping\MappingException",消息"类"model\dto\Canales"不是有效的实体或映射的超类。 在/Applications/MAMP/htdocs/yoga/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/MappingException.php:336 中,未捕获异常"Doctrine\ORM\Mapping\MappingException",消息"类"model\dto\Canales"不是有效的实体或映射的超类
我在堆栈溢出中尝试了一些类似的问题,但没有结果。有什么想法或建议吗?
我已经解决了我的问题。我不得不改变我的引导.php,这一行
$config = Setup::createAnnotationMetadataConfiguration(array(DIR."/src/model/dto"), $isDevMode, null, null, false);