Spring Security 4.2 에서 ConcurrentSessionFilter 사용 시 expiredUrl 사용이 Deprecated 되었습니다. @Deprecated public ConcurrentSessionFilter(SessionRegistry sessionRegistry, String expiredUrl) { expiredUrl 대신 SessionInformationExpiredStrategy 를 사용하면 됩니다. SessionInformationExpiredStrategy 생성자에 지정하지 않을 경우 Spring Security에 기본적으로 구현되어 있는 ResponseBodySessionInformationExpiredStrategy 가 적용 됩니다.
토비의 스프링으로 유명하신 토비님의 방송입니다.https://www.youtube.com/channel/UCcqH2RV1-9ebRBhmN_uaSNg매주 토요일 저녁 10시에 1~2시간 정도 방송이 이루어 지며 아주 유익한 내용이 넘칩니다. 방송의 보며 제가 작성한 코드는 GITHUB에 공유하였습니다.https://github.com/underbell/tobytv 실시간 방송 중 질문은 유트브를 통해 가능하며 이 후 질문과 토의는 슬랙을 통해 이루어지고 있습니다.https://codecoast-tv.slack.com/archives/toby-tv codecoast-tv는 facebook 그룹이며 해당 그룹의 공지입니다.https://slack-files.com/T0APH4UR1-F0B86H8KY-55f6c..
Quartz Schedule 사용 시 parameter 전달 xml에 설정하는 방법 arguments 에 List 식으로 추가하면 된다. 아래 소스를 보면 확인 할 수 있다. true public class MethodInvokingJobDetailFactoryBean extends ArgumentConvertingMethodInvoker implements FactoryBean, BeanNameAware, BeanClassLoaderAware, BeanFactoryAware, InitializingBean { public class ArgumentConvertingMethodInvoker extends MethodInvoker { public class MethodInvoker { ... /** * S..
Spring Security 4.2가 릴리즈 되었습니다. https://spring.io/blog/2016/11/10/spring-security-4-2-0-released Web Improvements # Jackson Support 추가되었습니다.// ... use ObjectMapper as normally ... SecurityContext context = new SecurityContextImpl(); // ... String json = mapper.writeValueAsString(context); # Referrer Policy 추가되었습니다. # @AuthenticationPrincipal 추가되었습니다. @RequestMapping("/messages/inbox") public Mod..
Scouter Slack Plugin
[DEVFEST 2016 BUSAN] 개발자들의 축제인 GDG DevFest 가 올해는 처음으로 부산에서도 개최됩니다! 부산 지역 개발자분들, 11월 12일(토)에 꼭 만나요! 기념 티셔츠 증정 이벤트도 진행중이니 많은 참여 바랍니다! #DevFest16 #GDGBusan ▶자세한 내용: goo.gl/x7Z0t6 ▶이벤트 참여: goo.gl/GRwWn0 http://neohum.cafe24.com/ https://developers-kr.googleblog.com/2016/10/devfest-2016-busan.html
UI 플랫폼으로 WebSquare 사용 시 Test Code WebSquare View 단에서 Submisson 시 dataList 또는 dataMap 의 key 값을 Test Code에서 임의로 생성하여 Test 진행 Submisson 의 ref: 'data:json,' 으로 처리하므로 Gson 혹인 Jackson을 이용하여 Json String으로 변환하여 post로 전달 인코딩 설정 과 WebSquare 설정 파일 경로 설정 추가