một cách khác để thực hiện việc này là tạo bảng bằng lược đồ cơ sở dữ liệu bảo mật mùa xuân tiêu chuẩn (http://static.springsource.org/spring-security/site/docs/3.0.x/reference/append-schema.html ). Sau đó, bạn có thể chỉ cần sử dụng jdbc-userservice của spring:
<security:authentication-provider >
<security:jdbc-user-service data-source-ref="dataSource" />
<security:password-encoder hash="sha" />
</security:authentication-provider>
Hoặc nếu bạn muốn sử dụng lược đồ của riêng mình, bạn có thể ghi đè các truy vấn như sau:
<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>