...
Add the following beans to conf/global.xml:
Code Block |
---|
<bean id="shibboleth.JDBCDataSource" class="org.mariadb.jdbc.MariaDbDataSource"> <property name="url" value="jdbc:mariadb://localhost:3306/webauthn" /> <property name="user" value="<user>" /> <property name="password" value="<password>" /> </bean> <bean id="shibboleth.WebAuthnStorageService" parent="shibboleth.JDBCStorageService" p:cleanupInterval="%{idp.storage.cleanupInterval:PT10M}" p:dataSource-ref="shibboleth.JDBCDataSource"/> |
...