Top Stories published by QueryPie, Inc. in September of 2015

Spring Security Remember-Me Key 설정

Spring Security에서 Remember-Me 활성화시 RememberMeService와, RememberMeAuthenticationProvider 두군데 키를 동일하게 맞춰 주어야만 정상적으로 동작합니다.

@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
@EnableRedisHttpSession(maxInactiveIntervalInSeconds…

Cordova 환경 구성 & Git Ignore 설정

요즘 Cordova를 관심있게 보고 있는데, 여러 개발자와 동시에 작업 할 경우 Cordova SCM 환경을 어떻게 구축해야할지 공식문서에 가이드가 되어있지 않아서 정리해봅니다.

Cordova는 HTML5 기반으로 레이아웃 & UI를 구성하고, 미리 만들어진 다양한 플러그인들을 통해 Android / iOS 와 같은 모바일 Native 앱을 빠르게 개발 할 수 있는 프레임워크입니다. ( 물론 플러그인에는 각 OS별로 Native 코드가 구현되어…