분류 전체보기
-
[AngularJS] (4) 모듈 | angular.module("appName", [])Programming/AngularJS 2021. 11. 20. 20:43
목차 (1) 기본 웹 서비스 개발환경 구축 (2-1) 기본 예제 (2-2) AngularJS 템플릿 만들고 적용하기 (3) 표현식 | {{data}} (4) 모듈 | angular.module("appName", []) (5) 지시자 | angular.directive(), ng-app, ng-init, ng-repeat (6) 모델 | ng-model, ng-show, valid, dirty, touched (7) Controller (8) scope 객체 | scope, rootScope (9) 필터 | uppercase, lowercase, orderBy, currency, date, filter, json, limitTo, number (10) 서비스 | location, get, timeout,..
-
[AngularJS] (3) 표현식 | {{data}}Programming/AngularJS 2021. 11. 20. 17:59
목차 (1) 기본 웹 서비스 개발환경 구축 (2-1) 기본 예제 (2-2) AngularJS 템플릿 만들고 적용하기 (3) 표현식 | {{data}} (4) 모듈 | angular.module("appName", []) (5) 지시자 | angular.directive(), ng-app, ng-init, ng-repeat (6) 모델 | ng-model, ng-show, valid, dirty, touched (7) Controller (8) scope 객체 | scope, rootScope (9) 필터 | uppercase, lowercase, orderBy, currency, date, filter, json, limitTo, number (10) 서비스 | location, get, timeout,..
-
[AngularJS] (2-2) AngularJS 템플릿 만들고 적용하기Programming/AngularJS 2021. 11. 20. 16:10
목차 (1) 기본 웹 서비스 개발환경 구축 (2-1) 기본 예제 (2-2) AngularJS 템플릿 만들고 적용하기 (3) 표현식 | {{data}} (4) 모듈 | angular.module("appName", []) (5) 지시자 | angular.directive(), ng-app, ng-init, ng-repeat (6) 모델 | ng-model, ng-show, valid, dirty, touched (7) Controller (8) scope 객체 | scope, rootScope (9) 필터 | uppercase, lowercase, orderBy, currency, date, filter, json, limitTo, number (10) 서비스 | location, get, timeout,..
-
[AngularJS] (2-1) 기본 예제Programming/AngularJS 2021. 11. 20. 16:07
목차 (1) 기본 웹 서비스 개발환경 구축 (2-1) 기본 예제 (2-2) AngularJS 템플릿 만들고 적용하기 (3) 표현식 | {{data}} (4) 모듈 | angular.module("appName", []) (5) 지시자 | angular.directive(), ng-app, ng-init, ng-repeat (6) 모델 | ng-model, ng-show, valid, dirty, touched (7) Controller (8) scope 객체 | scope, rootScope (9) 필터 | uppercase, lowercase, orderBy, currency, date, filter, json, limitTo, number (10) 서비스 | location, get, timeout,..
-
[Eclipse] 이클립스 버전 업그레이드/다운그레이드Programming 2021. 11. 20. 15:20
1. 버전 업그레이드 https://download.eclipse.org/releases/ > 위의 링크로 들어가 업그레이드하고자 하는 버전의 repository 링크를 복사한다. > Window -> Preferences -> Install/Update -> Available Software Sites로 들어가 Add 클릭 > 복사한 Eclipse repository URL을 붙여넣고 Add 클릭 > 방금 Add한 Site를 제외하고 unchecked상태로 변경 후 Apply and Close > Help -> Check for Updates를 클릭하면 방금 설정한 software site를 통해 업그레이드를 위한 파일을 다운로드한다 2. 버전 다운그레이드 > Installation History에서 ..
-
[Eclipse] 'Repository registry initialization' has encountered a problem. 오류 해결Programming 2021. 11. 19. 10:51
팀에서 Eclipse Neon을 쓰고 있는데, 2021-09버전 Eclipse로 workspace 환경을 바꾸려 시도했다. 새로 설치한 2021-09버전 Eclipse에서 workspace를 불러오니 다음과 같은 경고가 발생하며 프로젝트 파일들이 어그러졌다. 잘못됨을 직감하고 다시 Eclipse Neon에서 workspace를 불러오니 새 eclipse 버전으로 프로젝트 설정파일을 변경하면서 만들어진 오류때문에 다음과 같은 메세지를 띄웠다. .metadata / plugins / org.eclipse.m2e.core / nexus 내의 모든 파일을 삭제한 뒤 이클립스를 재실행하니 문제가 해결되었다.
-
[AngularJS] (1) 기본 웹 서비스 개발환경 구축Programming/AngularJS 2021. 11. 18. 17:58
목차 (1) 기본 웹 서비스 개발환경 구축 (2-1) 기본 예제 (2-2) AngularJS 템플릿 만들고 적용하기 (3) 표현식 | {{data}} (4) 모듈 | angular.module("appName", []) (5) 지시자 | angular.directive(), ng-app, ng-init, ng-repeat (6) 모델 | ng-model, ng-show, valid, dirty, touched (7) Controller (8) scope 객체 | scope, rootScope (9) 필터 | uppercase, lowercase, orderBy, currency, date, filter, json, limitTo, number (10) 서비스 | location, get, timeout,..
-
[Spring] Rest API 서버 만들기 - 빈등록Programming/Spring 2021. 11. 16. 17:05
1. 프로젝트 세부사항 설정 프로젝트 설정파일인 application.properties에 서버 포트 번호 및 컨텍스트 path를 등록 2. 클라이언트의 요청을 받을 수 있는 컨트롤러 빈을 생성 > 컨트롤러 패키지 생성 > controller 패키지에 SampleController 클래스 생성 3. 빈 등록 및 메서드 생성 > @RestController 어노테이션으로 해당 빈을 컨트롤러로 등록 > @RequestMapping("/test")를 갖는 method 생성 http://localhost:8081/app/test로 요청을 보낼 경우 "Hello World"를 응답하게 처리 *요청 URL : http://localhost:포트번호/컨텍스트명/서블릿매핑/요청매핑 4. 어플리케이션 실행 > 'Samp..