분류 전체보기 썸네일형 리스트형 App Engine + Maven + Spring + MyBatis + Cloud SQL(MySQL) in STS(Spring Tool Suite) App Engine + Maven + Spring + MyBatis + Cloud SQL(MySQL) in STS(Spring Tool Suite) 초기 스타트업 에는 인력이 항상 부족하다. 쉽게 말해 개발자가 시스템의 모든것을 준비하고 개발하고 운영해야 한다.호스팅 벤치마킹, 운영 플랫폼 설치/설정, 언어선택, 데이터베이스 설정, 방화벽 설정 등등실제 어플리케이션 개발에 착수하기전에 진이 빠져 버릴수 있다. 새로운 환경이면 더더욱 그렇다.이런 초기의 비용 및 에너지 소모를 줄이기 위해 본격적으로 클라우 플랫폼 도입을 하게 됐다. 선택은 Google Cloud Platform 의 Google App Engine - Google App Engin 만들기1. 구글계정이 없으면 계정을 생성한다.2. https.. [Material Design] 머티리얼 디자인 무료 리소스 머티리얼 디자인 작업시 유용한 무료 리소스 사이트 링크 모음 - 40 Free Material Design Resources for Designers [Widget] MaterialProgressBar MaterialProgressBar 원문 : https://github.com/DreaminginCodeZH/MaterialProgressBar Android 4.0 + 부터 일관된 모습을 보여주는 라이브러리머티리얼 프로그래스 를 하위 호환될 수 있도록 해준다. [Drawable] Android Drawables http://androiddrawables.com/ Jelly Bean 부터 현재 까지 안드로이드 버전별 Drawable 을 정리해 놓은 사이트시스템에 설치된 Drawable 리소스를 이 사이트에서 확인해서 필요한것은 사용하면 된다. [Material Design] 호환성 유지 - 호환성 유지 원문 - https://developer.android.com/training/material/compatibility.html#CheckVersion // Check if we're running on Android 5.0 or higher if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // Call some material design APIs here } else { // Implement this feature without material design } [Material Design] 머티리얼 디자인 롤리팝 이후로 안드로이드의 개발 방향이 많이 바뀌었다강제성은 없지만, 사용자의 UX/UI 를 위해서 앞으로 머티리얼 디자인을 적극적으로 도입해야 한다.이와 함께 프레그먼트를 기반으로 하는 개발도 병행 되어야 한다. - 롤리팝 이하 API (안드로이드 2.1 이상) 에서도 머티리얼 디자인을 적용하기 위한 방법 및 개념 참고 사이트 : http://swalloow.tistory.com/53 http://blog.bsk.im/2015/08/18/introducing-android-design-support-library/ https://developers-kr.googleblog.com/2015/06/designsupport.html android.support.v7.appcompatandroid.suppor.. Class vs Object vs Instance 원문 : https://alfredjava.wordpress.com/2008/07/08/class-vs-object-vs-instance/ In OO Programming, we often hear of terms like “Class”, “Object” and “Instance”; but what actually is a Class / Object / Instance?In short, An object is a software bundle of related state and behavior. A class is a blueprint or prototype from which objects are created. An instance is a single and unique unit of a class.. Gson - JSON <-> Object 상호변환 JSON 문자열을 object 로 또는, object 를 JSON 문자열로 google Gson 을 이용하면 한결 쉽다. Spring Framework 의 메이븐 설정은 아래주소에서 참조 http://search.maven.org/#artifactdetails%7Ccom.google.code.gson 아래는 Gson 사용자 가이드 페이지 https://sites.google.com/site/gson/gson-user-guide 아래는 Youtube API 결과중에 thumbnail json 타입 데이터를 데이터베이스에 넣으려고 한 코드이다. Map thumbnailMap = singleVideo.getSnippet().getThumbnails(); // Youtube API 결과중 thumbnail 데이.. 이전 1 ··· 3 4 5 6 7 8 9 ··· 16 다음