此篇主要是利用JavaEE规范标准涵盖的权限资源管理进行实现,并不涉及Spring Security或Shiro相关范围,需要获取Spring Security与LDAP整合的例子请参考此篇:点击这里,可能会涵盖一些WebSphere的注意点,但WebSphere与LDAP集成的具体配置此篇不会涵盖,因为只需要进到WAS的管理界面配置就好了。
LDAP与Tomcat整合,你需要做几个步骤,首先需要下载一个LDAP服务器进行安装,然后再下载一个LDAP浏览器的客户端进行设置或查看LDAP内容,在这里我主要推荐如下几个软件,具体安全步骤与内容设置我就不一一陈述了;
LDAP角色权限控制主要分为资源权限与业务代码权限.
1. WEB.XML主要用来控制资源权限,限制指定角色访问的资源,参考:WEB.XML篇
2. 业务代码权限需要手动验证,也就是登陆后从request取出权限进行判断,参考:页面登陆篇
我们主要采用Tomcat提供的Realm机制对LDAP进行远程地址绑定,采用Tomcat内部提供的登陆机制进行处理;首先找到tomcat/conf/server.xml并打开,找到如下内容:
<Realm className="org.apache.catalina.realm.UserDatabaseRealm" resourceName="UserDatabase"/>
在此段XML内容下加入下列内容:
<Realm className="org.apache.catalina.realm.JNDIRealm"
connectionURL="ldap://172.29.72.182:389"
connectionName="cn=root"
connectionPassword="root"
userBase="ou=people,dc=csvw,dc=com"
userSearch="(uid={0})"
userSubtree="false"
roleBase="cn=les,cn=function,dc=csvw,dc=com"
roleName="cn"
roleSearch="(member={0})"
roleSubtree="true" />
在Tomcat配置LDAP服务器完毕后,需要再项目对应的WEB.XML控制权限资源目录的访问,则需要做以下配置:
<security-constraint>
<web-resource-collection>
<web-resource-name>PRODUCTION MANAGEMENT</web-resource-name>
<url-pattern>/actions/*</url-pattern>
<url-pattern>/FCL/*</url-pattern>
<url-pattern>/vp/*</url-pattern>
<url-pattern>/vdm/*</url-pattern>
<url-pattern>/print/*</url-pattern>
<url-pattern>/system/*</url-pattern>
<url-pattern>/modules/*</url-pattern>
<url-pattern>/index.jsp</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>权限名称1</role-name>
<role-name>权限名称2</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>NONE</transport-guarantee>
</user-data-constraint>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Admin Console</web-resource-name>
<url-pattern>/admin/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>权限名称4</role-name>
<role-name>权限名称5</role-name>
</auth-constraint>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/error.html</form-error-page>
</form-login-config>
</login-config>
由于采用tomcat与LDAP绑定以及自动让Tomcat识别权限内容,那么前台页面登陆的写法也是固定的,如下:
<form id="login" name="login" method="post" action="j_security_check">
<input type="hidden" name="j_username" id="username" maxlength="20" />
<input type="hidden" name="j_password" id="password" maxlength="50" />
</form>
必须的属性值:
name=”login”
method=”post”
action=”j_security_check”
name=”j_username”
name=”j_password”
登陆成功后所有的角色权限内容都会由服务器自动存储在request里面,可以根据以下代码判断角色权限:
public static boolean getRole(HttpServletRequest request, String roleName) {
if (request.getRemoteUser() != null) {
return request.isUserInRole(roleName);
} else {
return true;
}
}
<form method="post" action="ibm_security_logout" name="logout">
<input type="hidden" name="logout" value="Logout">
<input type="hidden" name="logoutExitPage" value="/login.jsp">
</form>
必须的属性值:
name=”logout”
method=”post”
action=”ibm_security_logout”
name=”logout”
name=”logoutExitPage”
HttpSession session = request.getSession();
session.invalidate();
session = request.getSession(true);
设置会话过期之后再重新生成会话!记住每个页面要对原始Session进行过期判断,这样才能满足需求!
tomcat当会话超时后会将RemoteUser设置为NULL,并且会把新请求跳转到welcome的配置界面.
websphere会话超时后不会将RemoteUser设置为NULL,也不会对新请求做出处理.
http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html#JNDIRealm
http://ldapwiki.willeke.com/wiki/Tomcat%20And%20LDAP
http://pic.dhe.ibm.com/infocenter/wrklight/v6r0m0/index.jsp?topic=%2Fcom.ibm.worklight.help.doc%2Fappcenter%2Fr_ac_tom_ldap.html
http://wiki.metawerx.net/wiki/Web.xml.UserDataConstraint
http://docs.oracle.com/javaee/5/tutorial/doc/bncav.html
http://wiki.metawerx.net/wiki/Web.xml.SecurityRole
http://wibiline.iteye.com/blog/655424