自动加载器期望的类在文件

时间:2015-06-16 13:17:16

标签: php symfony classloader

我知道这个问题已被多次询问,但我没有在网上找到与我的问题相对应的解决方案。 所以,我创建了一个UserBundle,当我尝试访问登录页面时,出现以下错误:

  

自动加载器期望类“ET \ Bundle \ UserBundle \ Controller \ SecurityController”将在文件“C:\ xampp \ htdocs \ lab / src \ ET \ Bundle \ UserBundle \ Controller \ SecurityController.php”中定义。找到该文件但该类不在其中,类名或命名空间可能有拼写错误。

如果我的命名空间或班级名称不错,我会查看我的文件,但我找不到错误。

我的SecurityController:

<?php

namespace ET\UserBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\SecurityContext;

class SecurityController extends Controller{
public function loginAction(Request $request){

    // Si le visiteur est déjà identifié, on le redirige vers l'accueil
    if ($this->get('security.context')->isGranted(IS_AUTHENTIFICATED_REMEMBERED)){
        return $this->redirect($this->generateUrl('et_home'));
    }

    $session = $request->getSession();

    // On vérifie qu'il n'y a pas d'erreurs lors d'un précédente soumission de formulaire
    if($request->attributes->has(SecurityContext::AUTHENTIFICATION_ERROR)){
        $error = $request->attributes->get(SecurityContext::AUTHENTIFICATION_ERROR);
    }else{
        $error = $session->get(SecurityContext::AUTHENTIFICATION_ERROR);
        $session->remove(SecurityContext::AUTHENTIFICATION_ERROR);
    }

    return $this->render('ETUserBundle:Security:login.html.twig', array(
        'last_username'  => $session->get(SecurityContext::LAST_USERNAME),
        'error'          => $error,
    ));
}
}

我的防火墙:

    firewalls:
    # disables authentication for assets and the profiler, adapt it according to your needs
    dev:
        pattern:  ^/(_(profiler|wdt)|css|images|js)/
        security: false
    # the login page has to be accessible for everybody
    main:
        pattern:    ^/
        anonymous:  true
        provider:   in_memory
        form_login:
            login_path: login
            check_path: login_check
        logout:
            path:   logout
            target: / 

我的路由器:

login:
     pattern:   /login
     defaults:  { _controller: ETUserBundle:Security:login }

 login_check:
     pattern:  /login_check

logout:
   pattern:   /logout

如果有人对我有所了解请。提前致谢。 我已经在Symfony 2.6和2.7上尝试了这个,并进行了新的安装。

1 个答案:

答案 0 :(得分:1)

Intent chooseFile; Intent intent; chooseFile = new Intent(Intent.ACTION_GET_CONTENT); chooseFile.setType("file/*"); intent = Intent.createChooser(chooseFile, "Choose a file"); startActivityForResult(intent, ACTIVITY_CHOOSE_FILE); 替换为namespace ET\UserBundle\Controller;