티스토리 뷰

IT/Spring

Spring Security 4.2 Released

underbell 2016. 11. 15. 11:00
Spring Security 4.2가 릴리즈 되었습니다.



Web Improvements


Jackson Support 추가되었습니다.
// ... use ObjectMapper as normally ...
SecurityContext context = new SecurityContextImpl();
// ...
String json = mapper.writeValueAsString(context);

Referrer Policy 추가되었습니다.
<http>
	<!-- ... -->

	<headers>
		<referrer-policy policy="same-origin" />
	</headers>
</http>

# @AuthenticationPrincipal 추가되었습니다.
<mvc:annotation-driven>
		<mvc:argument-resolvers>
				<bean class="org.springframework.security.web.method.annotation.AuthenticationPrincipalArgumentResolver" />
		</mvc:argument-resolvers>
</mvc:annotation-driven>
@RequestMapping("/messages/inbox")
public ModelAndView findMessagesForUser(@AuthenticationPrincipal CustomUser customUser) {

	// .. find messages for this user and return them ...
}


# ForwardedHeaderFilter 추가되었습니다.


CompositeLogoutHandler 추가되었습니다.


# RequestAttributeAuthenticationFilter 추가되었습니다.



Configuration Improvements


# ConcurrentSessionControlAuthenticationStrategy 사용 시 unlimited sessions 이 추가되었습니다.
<concurrency-control max-sessions="-1" />


기타 등등... 개선 되었네요


댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
TAG
more
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
글 보관함