1

我正在尝试从 symfony2 中的数据库验证标准登录。

我在这里关注了文档: http:
//symfony.com/doc/current/book/security.html
和这里:
http ://symfony.com/doc/current/cookbook/security/entity_provider.html

我的安全文件:

security:
encoders:
    Acme\UserBundle\Entity\User:
        algorithm:        sha1
        encode_as_base64: false
        iterations:       1

role_hierarchy:
    ROLE_ADMIN:       ROLE_USER
    ROLE_SUPER_ADMIN: [ ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH ]

providers:
    administrators:
        entity: { class: RWLoginBundle:User, property: username }

firewalls:
    secured_area:
        pattern:    ^/
        anonymous: ~
        form_login: ~

access_control:
    - { path: ^/admin, roles: ROLE_ADMIN }

我的路由文件:

login:
    pattern:   /
    defaults:  { _controller: RWLoginBundle:Default:login } 
login_check:
    pattern:   /login_check

但是当我输入用户名和密码时,我得到了错误:

Fatal error: Call to undefined method RW\LoginBundle\Entity\User::findOneBy() in /var/www/rw/vendor/symfony/symfony/src/Symfony/Bridge/Doctrine/Security/User/EntityUserProvider.php on line 55

我的登录页面是根据带有表单的文档制作的,并且那里有一个重定向输入,它转到一个确实存在的 url。

有没有人遇到过这样的事情?

编辑:在下面添加实体

namespace RW\LoginBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Security\Core\User\UserInterface;
use Doctrine\Common\Collections\ArrayCollection;

/**
 * RW\LoginBundle\Entity\User
 *
 * @ORM\Table(name="users")
 * @ORM\Entity(repositoryClass="RW\LoginBundle\Entity\User")
 */
class User implements UserInterface, \Serializable
4

0 回答 0