일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 스프링
- FLASK
- Python
- iOS앱배포
- JavaScript
- subscript
- iOS배포
- customclass
- spring
- Xcode
- jQuery
- iOS계산기
- 맥
- DispatchGroup
- ios
- MainScheduler
- 앱배포
- 계산기앱만들기
- 딩동말씀
- FileOwner
- 스위프트
- 앱버전구하기
- 파이썬서버
- 자바스크립트
- 계산기앱
- 웹
- AJAX
- 개발기록
- Xib
- Swift
- Today
- Total
목록전체 글 (86)
개발하는 뚝딱이

Video streaming and content distribution networks (CDNs) Internet Video video tarffic : major consumer of Internet bandwidth Netflix, Youtube : 37%, 16% of downstream residential ISP traffic ~ 1B YouTube users, ~ 75M Netflix users challenge scalibility - single mega-video server won't work heterogenity different users have different capabilities (e.g., wired versus mobile; bandwidth rich vershs ..

P2P Application Properties No central control, no central database No hierarchy Every node is both a client and a server The communication between peer is symmetric No global view of the system Scalability Availability for any peer Peers are autonomous System globally unreliable Robustness and security issues Napster : centralized directory original "Napster" design 1) peer가 연결되면, directory serv..

DNS DNS : Domain Name System Name & Addres Name Character string for human use e.g. www.naver.com Mnemonic Address : Where you are IP address (32 bit string) : used by a machine www.naver.com → 32-bit string으로 변환 How to map between IP addresses and name? Mapping a name to an address or an address to a name is called name-address resolution. DNS Name resolution Solution 1 : Static Mapping Hostnam..

Electronic Mail (SMTP, POP3, IMAP) Electronic Mail Three major components: user agents mail servers simple mail transfer protocol : SMTP User Agent "mail reader" - 메일을 보내고 읽을 때 사용된다. composing, editing, reading mail messages e.g., Outlook, elm, Netscape Messenger outgoing, incoming messages stored on server Electronic Mail : mail servers Mail servers mailbox contains incoming messages for user (..

Application layer ; Web and HTTP Web and HTTP web page consists of objects object can be HTML file, JPEG image, Java applet, audio file... web page consists of base HTML-file which includes several referenced objects Hypertext/hypermedia file which information is organized as a set of documents (objects) ; object들을 포함한 document Each object is addressed by a uniform resource locator (URL) HyperTe..

스프링으로 웹 서비스를 구축 후, 배포 파일을 만들었다. 이 때, 404에러가 뜨는데 한참 이유를 찾아도 모르겠다. 404에러는 url을 제대로 매핑하지 못했을 때 일어난다. 지정한 웹 페이지로 가지 못했을 때 발생하는 에러이다. 이클립스에서는 제대로 돌아가는데??? 그렇다면 프로그램 내에서 컨트롤러의 mapping문제는 아닐 것이다. 배포 or 서버의 문제일 듯. 한참 삽질을 하다가 case로 분류해보았다. Case 1 프로젝트 우클릭 → Properties → Web Project Settings의 Context root를 확인한다 보통 Context root는 기본적으로 프로젝트의 artifactId로 지정된다. 다른 프로젝트를 import할 때 항상 context root를 고쳐줘야 하는데, 이게..