分享
 
 
 

用JAAS实现inStrutsWebApp(一)

王朝other·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

JAAS参考资料中流行的文章是扩展JAAS实现类实例级授权

但它是基于JDK1.3,与目前的JDK1.4,JDK1.5不兼容,例如其中的配置如下:

The following assumes you are using JDK 1.3 and the files were extracted to

the d:\JaasExample directory. You will save some work by extracting the files

to this directory otherwise you will have to modify the policy and the ResourceSecurity.xml

policy files with the correct path names.

1) Copy the jaas.jar and the jaasmod.jar to your JDK jre\lib\ext directory

(i.e. D:\JDK1.3\jre\lib\ext).

2) Add the following to the end of the java.security file located in JDK's

jre\lib\security directory (i.e. D:\JDK1.3\jre\lib\security):

auth.policy.provider=com.ibm.resource.security.auth.XMLPolicyFile

3) Execute the run.bat file.

1.4以后为policy.provider=PolicyFile。而且需要修改java.security文件

我经过2天的呕血奋战实现了不改变java VM环境和Web server环境,在struts下实现JAAS。

步骤如下:

1. welcome.jsp, index.jsp, struts-config.xml

<%@ taglib uri="/tags/struts-logic" prefix="logic" %

<logic:redirect forward="index"/

<%-- welcome.jspRedirect default requests to Welcome global ActionForward.By using a redirect, the user-agent will change address to match the path of our Welcome ActionForward. --%

index.jsp

<%@ page contentType="text/html; charset=UTF-8"%

<%@ taglib uri="/tags/struts-bean" prefix="bean"%

<%@ taglib uri="/tags/struts-html" prefix="html"%

<%@ taglib uri="/tags/struts-logic" prefix="logic"%

<html:html

<TitleLogon

</Title

<body<html:form action="/LoginAction.do"

<pUser ID:

<input type="text" name="userID" value="tyrone" /

<br

Passord: <input type="password" name="password" value="password"/

<br

<html:submit /

</p

</html:form

</body

</html:html

struts-config.xml

<?xml version="1.0" encoding="ISO-8859-1" ?

<!DOCTYPE struts-config PUBLIC

"-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"

"http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd"

<struts-config

<!-- ================================================ Form Bean Definitions --

<form-beans

<!--2 Login formbean--

<form-bean

name="LoginForm"

type="com.nova.colimas.web.form.LoginForm"/

</form-beans

<global-forwards

<!-- Default forward to "Welcome" action --

<!-- Demonstrates using index.jsp to forward --

<forward

name="index"

path="/index.do"/

</global-forwards<!-- =========================================== Action Mapping Definitions --

<action-mappings

<!-- Default "Welcome" action --

<!-- Forwards to Welcome.jsp --

<action

path="/index"

type="com.nova.colimas.web.action.StartupServlet"

<forward name="success" path="/pages/index.jsp"/

</action

<!-- 2 Login --

<action

path="/LoginAction"

type="com.nova.colimas.web.action.LoginAction"

name="LoginForm"

scope="request"

input="/pages/indexcon.jsp"

validate="true"

<forward name="success" path="/pages/index.jsp"/

<forward name="failure" path="/pages/index.jsp"/

</action

</action-mappings</struts-config

2. 实现com.nova.colimas.web.action.StartupServlet用来初始化JAAS需要的系统属性

public class StartupServlet extends Action { public ActionForward execute(ActionMapping mapping,

ActionForm form,

HttpServletRequest request,

HttpServletResponse response)

throws Exception{

// Initialization of the log

//LoggerFactory.setFactory(new EPricerLogFactory ());

//Log.info (this, "Startup of Settings application");

initJAAS();

return mapping.findForward("success");

}

//初始化JAAS需要的系统属性

private void initJAAS(){

//set env variable

//用于认证JAASConstants接口内保存login.config文件地址

System.setProperty("java.security.auth.login.config",JAASConstants.AUTH_SECURITY_LOGINFILE);

}

}

public interface JAASConstants {

String AUTH_SECURITY_POLICYXMLFILE="D:\\MyProject\\colimas\\clms-web\\colimas\\security-policy.xml";

String AUTH_SECURITY_LOGINFILE="D:\\MyProject\\colimas\\clms-web\\colimas\\login.config";

String AUTH_SECURITY_MODULENAME="ColimasLogin";}

Login.config文件内容:

ColimasLogin

{

com.nova.colimas.security.auth.ColimasLoginModule required debug=true;

};

3.实现ColimasLoginModule登录模块

/*

* Created on 2005/07/01

*

* TODO To change the template for this generated file go to

* Window - Preferences - Java - Code Style - Code Templates

*/package com.nova.colimas.security.auth;import java.util.*;

import javax.security.auth.*;import javax.security.auth.callback.*;

import javax.security.auth.login.*;

import javax.security.auth.spi.LoginModule;//import java.security.*;

//import org.w3c.dom.traversal.*;

import org.w3c.dom.*;//import org.apache.xpath.*;

/**

* @author tyrone

*

* TODO To change the template for this generated type comment go to

* Window - Preferences - Java - Code Style - Code Templates

*/public class ColimasLoginModule implements LoginModule {

private Subject subject;

private CallbackHandler callbackHandler;

private boolean debug = false;

private boolean succeeded = false;

private boolean commitSucceeded = false;

private String username;

private char[] password;

/**

* Initializes the <codeLoginModule</code.

*

* @param subject the <codeSubject</code to be authenticated.

*

* @param callbackHandler a <codeCallbackHandler</code for

* prompting and retrieving the userid and password from the user. *

* @param sharedState shared <codeLoginModule</code state.

*

* @param options options specified in the login configuration

* file for this <codeLoginModule</code.

*/

public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)

{

this.subject = subject;

this.callbackHandler = callbackHandler;

// initialize configuration options

debug = "true".equalsIgnoreCase((String) options.get("debug"));

}

/**

* Prompts the user for a userid and password.

*

* @return true if the authentication succeeded,

* or false if this LoginModule should be ignored

*

* @exception FailedLoginException if the authentication fails.

*

* @exception LoginException if the <codeLoginModule<

/code

* is unable to authenticate.

*/

public boolean login() throws LoginException {

if (callbackHandler == null)

throw new LoginException("Error: CallbackHandler cannot be null");

Callback[] callbacks = new Callback[2];

callbacks[0] = new NameCallback("userid: ");

callbacks[1] = new PasswordCallback("password: ", false);

try {

callbackHandler.handle(callbacks);

username = ((NameCallback) callbacks[0]).getName();

char[] tmpPassword = ((PasswordCallback) callbacks[1]).getPassword();

if (tmpPassword == null)

{

// treat a NULL password as an empty

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有