知道如何在 WSO2 Identity Server 4.0.0 中插入 JDBCAttribute finder 吗?任何参考也会有所帮助
有一些在线资料指向较低版本的 IS,但我特别在寻找 4.0.0
谢谢
知道如何在 WSO2 Identity Server 4.0.0 中插入 JDBCAttribute finder 吗?任何参考也会有所帮助
有一些在线资料指向较低版本的 IS,但我特别在寻找 4.0.0
谢谢
您需要按如下方式更改 entitlement.properties。
PIP.AttributeDesignators.Designator.1=org.wso2.carbon.identity.entitlement.pip.DefaultAttributeFinder
PIP.AttributeDesignators.Designator.2=org.wso2.identity.samples.entitlement.pip.jdbc.JDBCAttributeFinder
还使类公共类 JDBCAttributeFinder 扩展 AbstractPIPAttributeFinder
记得添加
@Override
public String getModuleName() {
// TODO Auto-generated method stub
return null;
}
在这个班级