All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mizhousoft.boot.authentication.session.SecureSessionDAO Maven / Gradle / Ivy

The newest version!
package com.mizhousoft.boot.authentication.session;

import java.io.Serializable;

import org.apache.shiro.session.Session;
import org.apache.shiro.session.mgt.eis.MemorySessionDAO;

/**
 * 安全的SessionDAO
 * 
 * @version
 */
public class SecureSessionDAO extends MemorySessionDAO
{
	/**
	 * 创建Session Id
	 * 
	 * @param session
	 * @return
	 */
	protected Serializable doCreate(Session session)
	{
		Serializable sessionId = session.getId();
		storeSession(sessionId, session);
		return sessionId;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy