これを行う別の方法は、標準のスプリングセキュリティデータベーススキーマ( http://static.springsource.org/spring-security/site/docs/3.0.x/reference/appendix-schema.html )。次に、Springのjdbc-userserviceを使用できます:
<security:authentication-provider >
<security:jdbc-user-service data-source-ref="dataSource" />
<security:password-encoder hash="sha" />
</security:authentication-provider>
または、独自のスキーマを使用する場合は、次のようにクエリをオーバーライドできます。
<security:authentication-provider>
<securiy:jdbc-user-service
data-source-ref="dataSource"
users-by-username-query="select username, password from users where username=?"
authorities-by-username-query="select username, roleName from role..."
role-prefix="ROLE_"
/>
</security:authentication-provider>