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
UI 플랫폼으로 WebSquare 사용 시 Test Code WebSquare View 단에서 Submisson 시 dataList 또는 dataMap 의 key 값을 Test Code에서 임의로 생성하여 Test 진행 Submisson 의 ref: 'data:json,' 으로 처리하므로 Gson 혹인 Jackson을 이용하여 Json String으로 변환하여 post로 전달 인코딩 설정 과 WebSquare 설정 파일 경로 설정 추가
Local에 SonarQube 설치 후 이클립스를 통해 maven 프로젝트 품질검사 하는 방법 http://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Maven 1. http://www.sonarqube.org/downloads/ 에서 최신 버전 6.0을 다운 받는다. 2. sonarqube-6.0/conf/sonar.properties 수정참고 : http://docs.sonarqube.org/display/SONAR/Installing+the+Server DATABASE, WEB SERVER, COMPUTE ENGINE, ELASTICSEARCH, LOGGING 등을 설정을 한다. 주석이 잘되어 있어 자신이 원하는 설정을..