본문 바로가기

테크/기타42

Spring Boot jsp 자동 reload 하기 # 참조- https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html- https://spring.io/blog/2015/06/17/devtools-in-spring-boot-1-3 # spring boot를 로컬에서 테스트할때, jsp 등의 수정이 자동으로 반영되지 않는것 같다. # pom 추가org.springframework.bootspring-boot-devtools # application.properties 설정- spring.devtools.livereload.enabled=true 2017. 5. 12.
Spring Boot 웹기본 참고 # Spring boot에서 jsp 사용하기, webjar 사용하는 부분 참조http://millky.com/@origoni/post/1100 # Spring boot jsp 웹 war로 배포하기, 별도 tomcat 없이 embeded tomcat 사용하는 부분 참조.http://www.logicbig.com/tutorials/spring-framework/spring-boot/boot-war-structure/ 2017. 5. 11.
Visual Studio Code에서 TypeScript 코딩하기 링크 : https://code.visualstudio.com/docs/languages/typescript # visual studio code 다운로드, 설치# nodejs 설치# (typescript 설치?) # VSCode 실행- 파일 -> 폴더열기 -> 새폴더 설정- 파일 -> 새파일 -> tsconfig.json- 파일 -> 새파일 -> HelloWorld.ts - Ctrl+Shift+P -> Configure Task Runner 선택 -> TypeScript-tsconfig.json 선택 -> 파일생성됨 # 빌드- Ctrl + Shift + B- js 파일 등이 생성됨 # 실행- node HelloWorld.ts # 컴파일된 javascript 파일 숨기기- 파일 -> 기본설정 -> Set.. 2017. 5. 9.
ionic2와 Spring boot RESTful 연동 ----- 기본 환경 -------JDKhttp://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 이클립스https://www.eclipse.org/downloads/eclipse-packages/ VS Codehttps://code.visualstudio.com nodejs(npm)https://nodejs.org/en/download/ cygwinhttps://cygwin.com/install.html ------------------------------------------ # ionic 샘플 테스트 (로컬 browser)npm install -g ionic cordovaionic start cutePupp.. 2017. 4. 19.