Spring Security 4.2 에서 ConcurrentSessionFilter 사용 시 expiredUrl 사용이 Deprecated 되었습니다. @Deprecated public ConcurrentSessionFilter(SessionRegistry sessionRegistry, String expiredUrl) { expiredUrl 대신 SessionInformationExpiredStrategy 를 사용하면 됩니다. SessionInformationExpiredStrategy 생성자에 지정하지 않을 경우 Spring Security에 기본적으로 구현되어 있는 ResponseBodySessionInformationExpiredStrategy 가 적용 됩니다.
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..
UI 플랫폼으로 WebSquare 사용 시 Test Code WebSquare View 단에서 Submisson 시 dataList 또는 dataMap 의 key 값을 Test Code에서 임의로 생성하여 Test 진행 Submisson 의 ref: 'data:json,' 으로 처리하므로 Gson 혹인 Jackson을 이용하여 Json String으로 변환하여 post로 전달 인코딩 설정 과 WebSquare 설정 파일 경로 설정 추가