我有一个带有Doctrine 2的ZF2 2.1.3应用程序。
我使用composer安装:
"zendframework/zendframework": "2.*"
,"doctrine/doctrine-orm-module": "dev-master"
使用以下内容创建文件config/autoload/database.local.php
:
return array(
'doctrine' => array(
'connection' => array(
// Default connection name
'orm_default' => array(
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'params' => array(
'host' => 'localhost',
'port' => '3306',
'dbname' => 'zf2-experimental',
'user' => 'root',
'password' => '',
),
),
),
),
);
我在Bar
模块(Foo
)下创建了我的实体src/Business/Entity/Bar.php
,并在module.config.php
上配置它:
'doctrine' => array(
'driver' => array(
__NAMESPACE__ . '_driver' => array(
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
'cache' => 'array',
'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Business/Entity'),
),
'orm_default' => array(
'drivers' => array(
__NAMESPACE__ . '\Business\Entity' => __NAMESPACE__ . '_driver',
),
),
),
),
确定!它正好在Sam says here!
然后我创建一个简单的Foo
实体并运行doctrine cli工具:
c:\wamp\www\zf2-Experimental>.\vendor\bin\doctrine-module.bat orm:validate-schema
[Mapping] OK - The mapping files are correct.
[PDOException]
SQLSTATE[28000] [1045] Access denied for user 'username'@'localhost' (using password: YES)
orm:validate-schema
c:\wamp\www\zf2-Experimental>
看起来cli工具可以在我的config/autoload/database.local.php
中获取我的连接参数!
On Application index我测试了我的配置:
$config = $this->getServiceLocator()->get('config');
\Zend\Debug\Debug::dump($config['doctrine']['connection']['orm_default']);
然后又回来了:
array (size=4)
'configuration' => string 'orm_default' (length=11)
'eventmanager' => string 'orm_default' (length=11)
'params' =>
array (size=5)
'host' => string 'localhost' (length=9)
'port' => string '3306' (length=4)
'user' => string 'root' (length=4)
'password' => string '' (length=0)
'dbname' => string 'zf2-experimental' (length=16)
'driverClass' => string 'Doctrine\DBAL\Driver\PDOMySql\Driver' (length=36)
有人可以帮助我吗?! :) 谢谢大家!
答案 0 :(得分:0)
好吧,我浪费了很多时间试图解决这个问题并最终做到了。
我忘了提到我使用ZF1环境特定的配置样式! 你可以看到here!
我在以下结构中创建了我的数据库配置文件(之前我没有提到过,因为我认为它不会干扰这个问题):
'module_listener_options' => array(
'config_glob_paths' => array(
'config/autoload/{,*.}{global,local}.php',
// Here! My config path is config/autoload/app_env/development/
'config/autoload/app_env/' . (getenv('APPLICATION_ENV') ?: 'production') . '{,*.}.local.php',
),
所以,我的数据库配置实际上在config/autoload/app_env/development/database.local.php
!
当我将文件复制粘贴到config/autoload/database.local.php
时,我的CLI工具正常工作!
但是为什么?为什么Cli Tool无法在另一个目录中查找配置文件? 有一种方法可以处理子文件夹吗?
感谢您的帮助!