找不到“GET /hello.html”的路由
这是我尝试访问时遇到的错误http://localhost/project/web/app_dev.php/hello.html
默认控制器:
<?php
/**
* @Route("/hello.html")
* @Template()
*/
public function indexAction()
{
return array();
}
?>
路由.yml:
MyHelloworldBundle:
resource: "@MyHelloworldBundle/Controller/"
type: annotation
prefix: /
应用内核.php:
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
new Symfony\Bundle\TwigBundle\TwigBundle(),
new Symfony\Bundle\MonologBundle\MonologBundle(),
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
new Symfony\Bundle\AsseticBundle\AsseticBundle(),
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
new JMS\AopBundle\JMSAopBundle(),
new JMS\DiExtraBundle\JMSDiExtraBundle($this),
new JMS\SecurityExtraBundle\JMSSecurityExtraBundle(),
new My\HelloworldBundle\MyHelloworldBundle(),
);
if (in_array($this->getEnvironment(), array('dev', 'test'))) {
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
}
return $bundles;
}
public function registerContainerConfiguration(LoaderInterface $loader)
{
$loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
}
}
整个文件结构好像没问题,src/My/HelloworldBundle/...怎么了?
到目前为止,我唯一做的就是删除了 acme demo——routing_dev.php 的三个部分,以及来自 AppKernel.php 的行。
将控制器中的注释更改为其他内容也不起作用。视图文件 src/My/HelloworldBundle/Resources/views/Default/index.html.twig 存在。
编辑:
当我执行 route:match 命令时,没有任何路由匹配。
这是错误日志:http://khernik.pl/asd.png 顶部: http: //khernik.pl/asdf.png
我现在从头开始执行所有操作,使用 symfony 的大多数默认设置(在创建新包时添加了自己的代码)。我做的唯一一件事就是从 AppKernel.php 中删除 Acme 行,并从 routing_dev.yml 中删除 acme 的三个前块。一切似乎都是正确的。
然而,还是不行。
编辑 2 - 完全默认控制器:
<?php
namespace My\HelloworldBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
class DefaultController extends Controller
{
/**
* @Route("/hello/{name}")
* @Template()
*/
public function indexAction($name)
{
return array('name' => $name);
}
}