我在symfony项目中有一些实体,我想在另一个不用symfony编写的php项目中重用。我不能改写这个项目,因为它是巨大的。
有没有办法在无symfony项目中包含我的实体及其存储库?
感谢您的回答
答案 0 :(得分:0)
如果有人感兴趣,我找到了在Symfony之外使用实体和存储库的解决方案
对于这个例子,我在/ path中安装了一个新的Symfony,我创建了一个简单的实体“Testeur”
<?php
// Import
require_once $_SERVER['DOCUMENT_ROOT'].'/path/vendor/autoload.php';
use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
use Doctrine\Common\Annotations\AnnotationReader;
use Doctrine\Common\Annotations\AnnotationRegistry;
use Acme\DemoBundle\Entity\Testeur;
$paths = array("/path/src/Acme/DemoBundle/Entity/");
$isDevMode = true;
// the connection configuration
$dbParams = array(
'driver' => 'pdo_mysql',
'user' => 'root',
'password' => 'root',
'dbname' => 'test_sf',
);
// Creation of the entity manager
$config = Setup::createConfiguration($isDevMode);
$driver = new AnnotationDriver(new AnnotationReader(), $paths);
AnnotationRegistry::registerLoader('class_exists'); // registering noop annotation autoloader - allow all annotations by default
$config->setMetadataDriverImpl($driver);
$entityManager = EntityManager::create($dbParams, $config);
// Creation of the repository of my Testeur entity
$metadata = $entityManager->getClassMetadata('Acme\DemoBundle\Entity\Testeur');
$repositoryClassName = $metadata->customRepositoryClassName;
if ($repositoryClassName === null) {
$configuration = $entityManager->getConfiguration();
$repositoryClassName = $configuration->getDefaultRepositoryClassName();
}
/** @var \Acme\DemoBundle\Entity\TesteurRepository $tR */
$repo = new $repositoryClassName($entityManager, $metadata);
// Example insertion
$obj = new Testeur();
$obj->setLib('First object');
$obj->setDescription('This is my first object');
$obj->setSort(1);
$obj->setVisible(true);
$entityManager->persist($obj);
$entityManager->flush();
// Get an objet by the repo
$o = $repo->find(17);
echo "<pre>".print_r($o, true)."</pre>";
所以现在,通过这个解决方案,我可以将我的实体用于一个巨大的(糟糕的)项目,这个项目不是用symfony制作的