일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 정보처리기사
- Spring Boot
- in-memory
- document database
- 다이나믹프로그래밍
- 영속성 컨텍스트
- 가상 면접 사례로 배우는 대규모 시스템 설계 기초
- 동적계획법
- 스프링 부트
- JPA
- MongoDB
- NoSQL
- 게시판
- VMware
- spring security
- 스프링부트
- sqld
- 자바의 정석
- 호이스팅
- 실행 컨텍스트
- 정처기
- SQL
- 깃허브
- 레디스
- 스프링 시큐리티
- 캐시
- 이벤트루프
- github
- Redis
- 분할정복
- Today
- Total
목록전체 글 (72)
FreeHand
애플리케이션 요구사항 회원 정보 이름(username) 나이(age) 기능 요구사항 회원 저장 회원 조회 회원 도메인 @Getter @Setter @NoArgsConstructor public class Member { private Long id; private String username; private int age; public Member(String username, int age) { this.username = username; this.age = age; } } 회원 저장소 public class MemberRepository { private static Map store = new HashMap(); private static long sequence = 0L; // 싱글톤 priva..
서블릿 등록 import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.ServletComponentScan; @ServletComponentScan // 서블릿 자동 등록 @SpringBootApplication public class ServletApplication { public static void main(String[] args) { SpringApplication.run(ServletApplication.class, args); } } import jakart..

field-name: field-value 형식으로 이루어짐 Content-Type 데이터의 형식 Content-Type: text/html;charset=UTF-8 Content-Type: application/json Content-Type: image/png Content-Encoding 데이터의 압축 방식 Content-Encoding: gzip Content-Encoding: deflate Content-Language 데이터의 자연어 Content-Language: ko Content-Language: en Content-Length 데이터의 길이 Referer 현재 요청된 페이지의 이전 페이지 주소(유입 경로를 알 수 있음). 요청에서 사용 User-Agent 클라이언트의 애플리케이션 정보(..