auth.conf

来自「精通RMI 这是RMI的入门基础 特别对刚开始学RMI的同胞们很有帮助」· CONF 代码 · 共 16 行

CONF
16
字号
// Put login modules providing authentication and realm mappings
// for specific beans here, for example:
// mybean {
//   org.jboss.security.DatabaseServerLoginModule required db="jdbc/DbJndiName" table="UserTable" name="UserNameColumn" password="UserPswColumn";
//   com.mycompany.MyRealmMappingLoginModule required param1="value1" param2="value2";
// }

other {
    // Provides the default realm mapping
    org.jboss.security.SimpleServerLoginModule required;

    // For database based authentication comment the line above,
    // uncomment the line below and adjust the parameters in quotes
    // org.jboss.security.DatabaseServerLoginModule required db="jdbc/DbJndiName" table="UserTable" name="UserNameColumn" password="UserPswColumn";
};
 

⌨️ 快捷键说明

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