본문 바로가기
테크/기타

google app engine, spring 연동 tutorial #1

by ahnne 2014. 8. 31.


# Goal

svn, maven 기반 spring 프로젝트를 이클립스에서 생성하고, google app engine 에 올려 서비스해보기


# Ref.

* 구글 앱엔진 문서 : https://cloud.google.com/appengine/docs

* 구글 앱엔진 with maven Tutorial : https://cloud.google.com/appengine/docs/java/gettingstarted/introduction



※ 이클립스 기반 (maven, spring 플러그인)

※ JDK 1.7


1. 구글 앱엔진 프로젝트 생성

https://cloud.google.com/appengine/docs/java/gettingstarted/creating


2. 이클립스 maven  프로젝트 생성

1) New > Maven Project

2) "Create a simple project" 체크 해제 > Next

3) Catalog : "All Catalogs"

    Filter : "com.google.appengine.archetypes" 로 검색

    Group Id : "com.google.appengine.archetypes", Artifact Id : "appengine-skeleton-archetype" 선택 > Next

4) Group Id : "com.example.guestbook"

    Artifact Id : "guestbook"

    version : 디폴트값

    package : "com.example.gusetbook"

    프로퍼티 : appengine-version = 1.9.15

    프로퍼티 : application-id = 구글앱엔진 프로젝트 아이디

5) maven build

    mvn clean install