Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to define my routes using annotations in symfony2. My Bundle name is PatentBundle. But I am getting an error of

No route found for "GET /portfolio/

My app/config/routing.yml

MunichInnovationGroupPatentBundle:
resource: "@MunichInnovationGroupPatentBundle/Controller/"
type:     annotation
prefix:   /
defaults:  { _controller: "MunichInnovationGroupPatentBundle:Default:index" }

My portfolio controller looks like

<?php
 namespace MunichInnovationGroup\PatentBundle\Controller;

 use MunichInnovationGroup\PatentBundle\Entity\Log;

 use MunichInnovationGroup\PatentBundle\Entity\UserPatent;
 use Symfony\Component\HttpFoundation\Response;
 use Symfony\Component\HttpFoundation\Request;
 use JMS\SecurityExtraBundle\Annotation\Secure;
 use Symfony\Component\Security\Core\Exception\AccessDeniedException;
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
 use MunichInnovationGroup\PatentBundle\Entity\SvPatents;
 use MunichInnovationGroup\PatentBundle\Entity\PmPortfolios;
 use MunichInnovationGroup\PatentBundle\Entity\UmUsers;
 use MunichInnovationGroup\PatentBundle\Form\PatentType;
 use MunichInnovationGroup\PatentBundle\Entity\PmPatentgroups;
 use Symfony\Component\Security\Core\SecurityContext;
 use MunichInnovationGroup\PatentBundle\Util\SecurityHelper;
 use Exception;

/**
 * Portfolio controller.
 * @Route("/portfolio")
*/
class PortfolioController extends Controller {

/**
 * Index action.
 *
 * @Route("/", name="portfolio")
 * @Method({"GET", "POST"})
 * @Template("MunichInnovationGroupBundle:Portfolio:show.html.twig")
 */
public function indexAction(Request $request) {
      // method code goes here
    }
share|improve this question
Do you get "/portfolio/" route in router:debug? Or just "/portfolio"? Route "/portfolio/" is different from "/portfolio". – Simone Demo Gentili Jun 16 '12 at 16:24
What append without the trailing slash? /porfolio ? – olivierw Jun 16 '12 at 16:24
It gives the same error on both – Zoha Ali Khan Jun 16 '12 at 16:26

2 Answers

app/config/routing.yml

MunichInnovationGroupPatentBundle:

resource: "@MunichInnovationGroupPatentBundle/Controller/DefaultController.php"
type:     annotation
prefix:   /

The controller should have:

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
share|improve this answer
I want to import the whole controller directory not only the default controller. I am getting error on the portfolio controller – Zoha Ali Khan Jun 16 '12 at 16:29
Thanks for the "The controller should have:" section. You need to include all of those, even if they are not being used. – mattalexx Mar 30 at 21:46

If you are in the developement environment check you import the routing.yml in routing_dev.yml:

# app/config/routing_dev.yml

_main:
    resource: routing.yml
share|improve this answer
I already did this but not working – Zoha Ali Khan Jun 16 '12 at 16:41
Your code whould work... As suggested by Simone Demo Gentili, you should see all your active routes using app/console router:debug what is the result? – olivierw Jun 16 '12 at 16:48
I checked it through aap/console and I have two bundles 1 is Bundle and the other is PatentBundle. Bundle also has portfolio route and its path is v1/portfolio, I want to make the PatentBundle routes work not the others. – Zoha Ali Khan Jun 16 '12 at 17:01
So you have to understand why your route is v1/portfolio and not /portfolio. This didn't appear in the code you post. – olivierw Jun 16 '12 at 17:05
yeah i just run the command u provided and it showed me that the path for portfolio rout is v1/portfolio not portfolio. but how can I use Patentbundle routes. – Zoha Ali Khan Jun 16 '12 at 17:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.