dalším způsobem, jak toho dosáhnout, je vytvořit tabulky pomocí standardního schématu jarní bezpečnostní databáze (http://static.springsource.org/spring-security/site/docs/3.0.x/reference/appendix-schema.html ). Pak můžete jednoduše použít jarní jdbc-userservice:
<security:authentication-provider >
<security:jdbc-user-service data-source-ref="dataSource" />
<security:password-encoder hash="sha" />
</security:authentication-provider>
Nebo pokud chcete použít vlastní schéma, můžete dotazy přepsat takto:
<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>