auth.conf

来自「《J2EE企业级应用开发》一书的配套源代码」· CONF 代码 · 共 30 行

CONF
30
字号

// An example of the SRP login module
srp-client {
   org.jboss.srp.jaas.SRPLoginModule required
      password-stacking="useFirstPass"
      principalClassName="org.jboss.security.SimplePrincipal"
      srpServerJndiName="SRPServerInterface"
      debug=true
      ;

   // The JBoss LoginModule
   org.jboss.security.ClientLoginModule  required
      password-stacking="useFirstPass"
      ;

   // Put your login modules that need JBoss here
};

// The default client login module configuration that infects the
// EJB transport layer with the application caller
other {

   // JBoss LoginModule
   org.jboss.security.ClientLoginModule  required
	;

   // Put your login modules that need JBoss here
};
 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?