1
DynamoDB
を使用してスプリングセキュリティ認証を提供する方法を知っている人はいますか?言い換えれば、DynamoDB
を使用して以下のconfigAuthentication
メソッドをどのように変換/表現しますか?DynamoDBを使用したSpringセキュリティ認証
@Autowired
public void configAuthentication(AuthenticationManagerBuilder auth)
throws Exception {
auth.jdbcAuthentication().dataSource(dataSource)
.usersByUsernameQuery("select username, password, enabled from appuser where username = ?")
.authoritiesByUsernameQuery("select username, rolename from appuser natural join user_role natural join role where username = ?;");
}
https://github.com/michaellavelle/spring-security-spring-data-dynamodbは正式な回答に最も近いものですが、3年後に更新されていないので懐疑的ですそのパッケージのすでにメンテナンスされているhttps://github.com/derjust/spring-data-dynamodbを既に使用していますが、JWT/Spring Securityについては何も表示されません。 –