글
spring-security 할 때, 주의점.
S/Spring
2014. 4. 22. 14:50
<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)으로 하던가 해야지 쿼리문 인식이 원활히 진행된다.
'S > Spring' 카테고리의 다른 글
Request processing failed; nested exception is org.apache.tiles.definition.DefinitionsFactoryException: I/O Error reading definitions.] with root cause (0) | 2014.06.14 |
---|---|
Binding a List Request Parameter on Spring MVC (0) | 2014.06.03 |
Spring form 태그 유의 사항 (0) | 2014.05.28 |
Maven dependencies not being added to WEB-INF/lib (0) | 2014.04.07 |
AOP 용어 (0) | 2014.03.16 |