일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring Framework
- Payload
- wargame
- webhacking.kr
- OS
- BOF
- PWN
- 웹해킹
- 정보보안기사 실기
- hacking
- webhacking
- 네트워크
- system hacking
- Pwnable.kr
- Shell code
- Lord of BOF
- 워게임
- Buffer Overflow
- 운영체제
- System
- LOB
- Spring
- 정보보안기사
- pwnable
- 해킹
- Operating System
- Spring MVC
- stack overflow
- 정보처리기사 실기
- SQL
- Today
- Total
DongDD's IT
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/spfjL/btqOn0qyuWR/7nxOzOdrmSPvVfHF2RXTrK/img.png)
[Spring] Spring Kafka - Reactor Kafka Kafka - 메시징 시스템(메시징 큐)이다.(e.g RabbitMQ) - Distributed Event Streaming Platform이다.(https://kafka.apache.org) - Pub/Sub 구조를 가지고 있다. -> Publisher는 특정 토픽에 key/value(data)값을 publish한다. -> Subscriber는 특정 토픽을 subscribe하여 데이터를 받는다. - Kafka는 기본적으로 클러스터 구성으로 동작한다. Local에서 Kafka 띄우기 - docker-compose-single-broker.yml 사용할 예정 - https://github.com/wurstmeister/kafka-docke..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/rrtCF/btqABC55c8T/ccT8CDdplge9ef1kd1RyM0/img.png)
[Spring] Spring Data Redis - Cache Redis(Remote Dictonary server) - Inmemory key-value 데이터베이스이며 NoSQL DBMS이다. - Message queue, Shared Memory, Remote dictionary 용도로 사용된다고 한다. - Key-value 저장소이고 Inmemory이기 때문에 좋은 성능을 제공하여 Cache 용도로 사용한다. -> Redis reference : http://redisgate.jp/redis/configuration/redis_conf_list.php (일본 사이트 인 것 같은데 한글로 번역되어 있다) - Redis server는 single-thread로 동작한다. Local에 Redis ser..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/k7isz/btqAjmHQUSB/KtMCFgACMgT43C7oXkWlpK/img.gif)
[Spring] Spring webflux ServerSentEvent(SSE) Server Sent Event(SSE) - 일반적인 통신에서는 Client의 하나의 request에 하나의 response가 전달되는 형태로 통신이 이루어진다 - SSE에서 사용하는 event-stream 방식에서는 client가 request를 전송하면 connection이 맺어진 후에 half-duplex로 서버가 지속적으로 데이터를 보내줄 수 있다 Spring SSE Spring MVC - Spring MVC에서는 SSEEmitter를 이용하여 event-stream 방식의 SSE를 구현할 수 있다 Spring Webflux - Spring Webflux는 reactive이기 때문에 Flux자체로 SSE를 구현할 수 ..
[Spring] Spring Boot Spring Boot Spring Boot - Spring framework의 프로젝트 중 하나- 특별한 설정 작업 없이 기본 설정만으로 다양한 기능을 구현 가능- Tomcat 내장 서버를 가지고 있어 따로 Tomcat 설정이 불필요 Project 구성(gradle) - Spring boot 생성 시, 다음과 같은 구조가 생성 1. BoottestApplication12345678@SpringBootApplicationpublic class BoottestApplication { public static void main(String[] args) { SpringApplication.run(BoottestApplication.class, args); }}Colored..