Jforum登录


登录的链接地址为:/jforum/user/login.page
根据前台对链接地址的分析出:
module:user
action:login
在配置文件modulesMapping.properties中找到user模块对应的处理类
user = net.jforum.view.forum.UserAction
public class UserAction extends Command 
{
	public void login()
	{
		//如果登录方式是SSO
		if (ConfigKeys.TYPE_SSO.equals(SystemGlobals.getValue(ConfigKeys.AUTHENTICATION_TYPE))) {
			this.registrationDisabled();//设置页面模板为message.htm
			return;
		}
		//设置登录成功后应该进入的页面
		if (this.request.getParameter("returnPath") != null) {//请求参数中设置了成功后进的页面
			this.context.put("returnPath", this.request.getParameter("returnPath"));
		}
		else if (!SystemGlobals.getBoolValue(ConfigKeys.LOGIN_IGNORE_REFERER)) {//请求头中设置了成功后进入的页面
			String referer = this.request.getHeader("Referer");
			
			if (referer != null) {
				this.context.put("returnPath", referer);
			}
		}

		this.context.put("pageTitle", I18n.getMessage("ForumBase.login"));
		this.setTemplateName(TemplateKeys.USER_LOGIN);
	}
}

你可能感兴趣的:(.net,SSO)