春に私はDBに対して認証しようとしています.それはこの構成を使用して成功しています:
<jdbc-user-service data-source-ref="dataSource"
users-by-username-query="
select username,password, enabled
from user where username=?"
authorities-by-username-query="
select u.username, ur.authority from user u, user_roles ur
where u.id = ur.user_id and u.username =? "
/>
しかし、少なくとも各ユーザーが ROLE_USER を指定するように user_roles に行を追加するまでログインできません... DB にレコードを追加せずにすべてのユーザーに ROLE_USER を付与する方法はありますか? 前もって感謝します