是否有可能通過tomcats默認身份驗證方法制作使用JAAS身份驗證的Web應用程序。JAAS:使應用程序使用Tomcat身份驗證設置
舉例說明:Tomcat使用tomcat_users.xml進行身份驗證。 Web應用程序在jaas.cfg中定義了自己的方法。我們如何配置jaas.cfg,使其使用Tomcat的方法,以便當Tomcat中的配置更改應用程序的身份驗證方法開關時。
當前的配置是這樣的:
BonitaAuth {
org.ow2.bonita.identity.auth.BonitaIdentityLoginModule required;
};
BonitaStore {
org.ow2.bonita.identity.auth.LocalStorageLoginModule required;
};
BonitaAuth-default {
org.ow2.bonita.identity.auth.BonitaIdentityLoginModule required domain="default";
org.ow2.bonita.identity.auth.LocalStorageLoginModule required domain="default";
};
BonitaStore-default {
org.ow2.bonita.identity.auth.LocalStorageLoginModule required domain="default";
};
/**
* Used by the REST server
*/
BonitaRESTServer {
org.ow2.bonita.identity.auth.BonitaRESTServerLoginModule required logins="restuser" passwords="restbpm" roles="restuser";
};
您是否看到下面的答案?它有幫助嗎? – Michael 2013-05-17 06:53:15