본문 바로가기

분류 전체보기

TRUNCATE + FOREIGN KEY 5.5.7 부터 FOREIGN KEY 설정이 된 테이블을 TRUNCATE 하려면 FOREIGN_KEY_CHECKS을 0으로 지정해야한다. 안 그러면 Cannot truncate a table referenced in a foreign key constraint 오류가 발생한다.SET FOREIGN_KEY_CHECKS = 0; -- Disable foreign key checking. TRUNCATE TABLE Video; TRUNCATE TABLE Category; SET FOREIGN_KEY_CHECKS = 1; -- Enable foreign key checking.
FCM (Firebase Cloud Messaging) 공식문서https://firebase.google.com/docs/cloud-messaging/android/client?hl=ko
[MyBatis] 리턴 결과 Mybatis Query 성공시 Select 해당 결과 Insert 1 Update Update 된 행의 수, 없으면 0 Delete Delete 된 행의 수, 없으면 0
Google App Engine vs Google Compute Engine Google App Engine 과 Google Compute Engine 의 차이점은 무엇인가? Google App Engine 은 PaaS (Platform as a Service) - 정해진 개발환경에 따라서 개발을 해라Google Compute Engine 은 IaaS (Infrastructure as a Service) - 개발환경 세팅 도 하고 개발도 해라 http://stackoverflow.com/questions/22697049/what-is-the-difference-between-google-app-engine-and-google-compute-engine 더 필요한 내용은 진행중...
[YouTube API] unauthorized-overlay YouTubePlayer 가 존재 하는 레이아웃 에서 YouTubePlayer 상위에 뷰가 존재 하면 플레이어가 멈춘다. 로그캣에 출력된 경고 로그는 아래와 같다 W/YouTubeAndroidPlayerAPI: YouTube video playback stopped due to unauthorized overlay on top of player. The YouTubePlayerView is obscured by android.view.View{26787c47 V.ED.... ........ 0,0-1280,50 #102002f android:id/statusBarBackground}. The view is inside the YouTubePlayerView, with the distance in px b..
app.yml vs appengine-web.xml vs web.xml https://www.clear.rice.edu/comp405/s14/lectures/gae/gae_project.html app.yml 은 appengine-web.xml 과 web.xml 을 변환해서 자동 생성된 파일 이란다.이클립스에서는 자동으로 변환이 안된다고 한다.더 자세한 사항은 다음에... ㅡㅡ;
Google App Engine + Cron (Spring Scheduler) Google App Engine 에서는 Spring Scheduler 를 지원하지 않았다. 에러 내용을 남기지 못했는데스레드를 생성할 권한이 없다는 취지의 에러 였다.Google App Engine 은 파일 시스템 액세스나 스레드 관련해서는 허용 하지 않는다.대신에 대처할 수 있는 여러 서비스가 존재 한다.Google Cloud Platform 의 하위 서비스로 Google App Engine 과 Cloud SQL 이 존재 하듯이Google Cloud Platform 문서 나 구글 검색을 해보면 답을 얻을 수 있다.따라서, Spring Scheduler 를 대신 하기 위해서는 아래의 문서를 참조 할것. https://cloud.google.com/appengine/docs/flexible/java/sch..
Maven + App Engine Plugin 사용하기 앱엔진 을 이용해서 개발서버 올리기 및 실서비스 배포 를 하다보면 Maven 명령이 상이한 경우 있다이는 Maven 명령시 어느 플러그인을 사용하느냐에 따라 다른것이다. http://stackoverflow.com/questions/41511432/could-not-find-goal-run-in-plugin-com-google-appengineappengine-maven-plugin 위 URL 의 답변에 보면 잘 나와 있다. 답변 중에 링크 걸려 있는 스레드도 읽어 보면 많은 도움이 된다. Google App Engine 문서에 따르면 App Engine Maven 명령어는 두가지 플러그인으로 다룰 수 있다고 나온다. 1. appcfg2. Cloud SDK 1. appcfg 플러그인 을 사용할때https..