ऐसा करने का दूसरा तरीका मानक स्प्रिंग सुरक्षा डेटाबेस स्कीमा (http://static.springsource.org/spring-security/site/docs/3.0.x/reference/appendix-schema.html ) तब आप बस स्प्रिंग की 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>