您能告诉我一些有关如何创建新Symfony2项目的信息吗?
我开始从github获取symfony / symfony-sandbox作为tar-ball。 然后我删除了旧的src / vendor内容。
我使用git submodule获取最新的供应商库。 (fabpot / Symfony,学说,迁移,......)。
与最新的fabpot / Symfony代码相比,问题是沙箱似乎已过时。
所以我开始修改更改的内容(FoundationBundle重命名,一些方法签名更改(如registerContainerConfiguration,...)。
我仍然收到此错误:
Symfony\Components\HttpKernel\Exception\NotFoundHttpException: Unable to find the controller.
路由似乎有问题:请求不匹配控制器。
你知道吗?更好的是,是否有人使用最新Symfony代码的沙箱?
提前谢谢, 弗洛里安。答案 0 :(得分:3)
主要问题是Symfony变化太快,无法维护基于trunk / main分支的工作解决方案。
也许我没有关于如何开始的最佳方法,但经过一些搜索,我找到了解决方案:
我终于找到了我的问题:
我所有的问题都与DI有关。
第一个问题是ControllerLoaderListener没有观察到“core.load_controller”事件。
这是因为我在config.yml中停用了网络扩展程序(对我感到羞耻......但我正在测试!)
之后,我遇到了“路由器”服务的另一个问题。它既没有加载!
看这里:
src/vendor/symfony/src/Symfony/Bundle/FrameworkBundle/Resources/skeleton/application/yml/config/config.yml
我发现路由器服务由此config.yml激活:
parameters:
kernel.include_core_classes: false
kernel.config: ~
web.config: #enables the Web DI extension
router: { resource: "%kernel.root_dir%/config/routing.yml" } #enables the Routing DI extension
web.templating: ~
doctrine.dbal: ~
doctrine.orm: ~
如果我对大家这样说,那只是因为我希望能够为其他人节省一些麻烦:)
如果有人感兴趣,这里有一个工作内核,他使用最新的fabpot / Symfony repo。
<?php
require_once __DIR__.'/../src/autoload.php';
use Symfony\Framework\Kernel;
use Symfony\Components\Routing\Loader\YamlFileLoader as RoutingLoader;
use Symfony\Components\DependencyInjection\Loader\LoaderInterface;
class ECommerceKernel extends Kernel
{
public function registerRootDir()
{
return __DIR__;
}
public function registerBundles()
{
$bundles = array(
new Symfony\Framework\KernelBundle,
new Symfony\Bundle\FrameworkBundle\FrameworkBundle,
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle,
new Symfony\Bundle\DoctrineBundle\DoctrineBundle,
new Symfony\Bundle\DoctrineMigrationsBundle\DoctrineMigrationsBundle,
new Application\ECommerceBundle\ECommerceBundle,
);
if ($this->isDebug()) {
}
return $bundles;
}
public function registerBundleDirs()
{
$bundles = array(
'Application' => __DIR__.'/../src/Application',
'Bundle' => __DIR__.'/../src/Bundle',
'Symfony\\Framework' => __DIR__.'/../src/vendor/symfony/src/Symfony/Framework',
'Symfony\\Bundle' => __DIR__.'/../src/vendor/symfony/src/Symfony/Bundle',
);
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
return $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
}
public function registerRoutes()
{
$loader = new RoutingLoader($this->getBundleDirs());
return $loader->load(__DIR__.'/config/routing.yml');
}
}