본문 바로가기

전체 글150

spring boot과 jsp 기본 프로젝트(웹) # spring boot 에서 jsp를사용하려면, 몇가지 dependency 설정과 경로설정이 필요하다. # spring starter project 생성 + web 항목 선택 # pom dependency(생략) org.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-starter-testtest org.apache.tomcat.embedtomcat-embed-jasperprovidedjavax.servletjstlorg.eclipse.jdt.core.compilerecj4.6.1provided (생략) # application.propertiesspring.mvc.view.prefix=/WEB-INF/jsp/.. 2017. 8. 30.
angular 웹개발 (ecplise, spring boot, typescript) - #1 ※ 참고 : 책 Angular with typescript development (Yakov Fain, Anton Moissev 지음, 한창현 옮김) # typescript가 포함된 웹 기본 실행 - 이클립스 준비 (Oxygen)- Spring starter project 생성 + web 선택- static/index.html 생성후, localhost:8080 접속, index 페이지 출력 테스트 - index.html 코드 일부12345678910111213141516171819 System.config({ transpiler : 'typescript',map : { 'rxjs' : 'https://unpkg.com/rxjs@5.3.0', '@angular/core' : 'https://unpkg.c.. 2017. 8. 26.
이클립스 maven remote catalog 주소 이클립스에서 pom dependency 를 추가하려고 하는데 검색이 안될 경우, 이클립스 > Window > Preferences > Maven > Archetypes 선택 > Add Remote Catalog 선택 > Catalog File 입력칸에 아래 주소를 넣고 OK. http://repo.maven.apache.org/maven2/archetype-catalog.xml 2017. 5. 31.
Google Cloud Datastore 사용하기(spring) # 관리화면 https://console.cloud.google.com/datastore # 인증 관련 https://developers.google.com/identity/protocols/application-default-credentials ## 서비스키 파일 다운로드 -> path 를 환경변수로 설정 필요- https://console.developers.google.com/project/_/apis/credentials 에서 관련 json 파일 다운로드.- "GOOGLE_APPLICATION_CREDENTIALS" ## shell 에서 gcloud auth application-default login 실행 # 클라이언트 API 사용 https://cloud.google.com/appengin.. 2017. 5. 31.