<http auto-config="true">
  <intercept-url pattern="/**" access="ROLE_USER" />
  </http>

 <authentication-manager>


  <authentication-provider>
   <jdbc-user-service data-source-ref="dataSource"
    users-by-username-query="select username, password, enabled from [dbo].[User] where username = ?"
    authorities-by-username-query="select a.username, b.authority from [dbo].[User] a join [dbo].[UserSep] b on a.username = b.username where a.username = ?"
   />
  </authentication-provider>
 </authentication-manager>
</beans:beans>

char(30) 했을 경우, 30글자 다 차지하기 때문에 조건식에서 일치 인식이 맞지 않을 수 있다.

그러므로 varchar(30)으로 하던가 해야지 쿼리문 인식이 원활히 진행된다.

설정

트랙백

댓글