일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- yml
- 코딩테스트
- @RequestParam
- RequestBody
- Codewars
- response
- redis
- RequestParam
- springboot
- DTO
- enum
- Request
- property
- JWT
- 헬스체크
- actuator
- @Value
- Security
- 로그인
- Docker
- @RequestBody
- 반환
- 프로퍼티
- 코드워즈
- 파라미터
- 플라이웨이트
- Spring
- ResponseDto
- Boot
- 디자인 패턴
- Today
- Total
목록전체 글 (14)
있을 유, 참 진
Dependency 추가 & Yaml 파일 설정 💡 password를 설정했다면 yml 파일에 password 또한 설정해준다. // Redis implementation 'org.springframework.boot:spring-boot-starter-data-redis' #Redis 설정 spring: redis: lettuce: pool: max-active: 5 max-idle: 5 min-idle: 2 host: localhost port: 6379 password: 1234 Redis Configuration 설정 @Configuration @EnableRedisRepositories public class RedisConfig { @Value("${spring.redis.host}") pri..
Redis 이미지 받아오기 💡 docker pull redis를 통해서 redis를 받아온다. redis의 가장 최근 버전을 받아온다. PS C:\Users\USER-PC> docker pull redis Using default tag: latest latest: Pulling from library/redis 26c5c85e47da: Pull complete 39f79586dcf2: Pull complete 79c71d0520e5: Pull complete 60e988668ca1: Pull complete 873c3fc9fdc6: Pull complete 50ce7f9bf183: Pull complete Digest: sha256:f50031a49f41e493087fb95f96fdb3523bb25dc..
목표 기존의 Spring Boot main() - 시작 전 메인 함수 초기화 빈 컨테이너 생성하기 - 결과 보기 Servlet 매핑하기 & Servlet Request 처리 - 결과 보기 Servlet mapping -> Controller로 변환 - Hello Controller 생성 - 코드 변경 1. 기존 코드 2. 변경 코드 목표 💡 Spring Boot는 별도의 Web Server의 설치나 설정이 없이 개발에만 집중할 수 있게 해 준다. 기존의 Spring Boot의 main 함수 내에 직접 그것을 구현 및 정리 기존의 Spring Boot main() 💡 기존의 Spring Boot 메인, 해당 메인을 실행하면 부트 내의 내장된 톰캣이 실행되고 컨테이너를 초기화, `@SpringBootAppl..