회원 서비스 package kr.example.spring.service; import kr.example.spring.domain.Member; import kr.example.spring.repository.MemberRepository; import java.util.List; import java.util.Optional; public class MemberService { private final MemberRepository memberRepository = new MemoryMemberRepository(); // 회원 가입 public Long join(Member member) { // 같은 이름이 있는 중복 회원 X validateDuplicateMember(member); // 중복 ..
컨트롤러: 웹 MVC의 컨트롤러 역할 서비스: 핵심 비즈니스 로직 구현 리포지토리: 데이터베이스에 접근, 도메인 객체를 DB에 저장하고 관리 도메인: 비즈니스 도메인 객체, 예) 회원, 주문, 쿠폰 등등 주로 데이터베이스에 저장하고 관리됨 회원 도메인과 리포지토리 회원 객체 package kr.example.spring.domain; public class Member { private Long id; private String name; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String na..
정적 컨텐츠 html 그대로 서버로 전달 -> 웹 페이지에 보여진다. docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/spring-boot-features.html#boot-features-spring-mvc-static-content Spring Boot Features Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the applicat..
- Total
- Today
- Yesterday
- Spring
- SPARK
- maven
- Replacement Strategies
- oracle
- Disk System
- File Protection
- vmware
- I/O Mechanisms
- Variable allocation
- aop
- HDFS
- Java
- hadoop
- Disk Scheduling
- Free space management
- SQL
- JSON
- gradle
- RAID Architecture
- linux
- springboot
- 빅데이터
- jdbc
- Flume
- 빅데이터 플랫폼
- 하둡
- Allocation methods
- mapreduce
- I/O Services of OS
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |