Package com.github.zhangkaitao.shiro.chapter20.realm

Examples of com.github.zhangkaitao.shiro.chapter20.realm.StatelessRealm


        //3、客户端请求的参数列表
        Map<String, String[]> params = new HashMap<String, String[]>(request.getParameterMap());
        params.remove(Constants.PARAM_DIGEST);

        //4、生成无状态Token
        StatelessToken token = new StatelessToken(username, params, clientDigest);

        try {
            //5、委托给Realm进行登录
            getSubject(request, response).login(token);
        } catch (Exception e) {
View Full Code Here

TOP

Related Classes of com.github.zhangkaitao.shiro.chapter20.realm.StatelessRealm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.