본문 바로가기
반응형

[개발] 프레임워크49

WebFlux WebFlux는 Spring Framework 5에서 도입된 반응형 프로그래밍 모델을 위한 웹 프레임워크입니다. WebFlux는 전통적인 Spring MVC와는 다르게, 비동기 및 반응형 웹 애플리케이션을 만들기 위해 설계되었습니다. WebFlux의 주요 특징과 이점은 다음과 같습니다: 1. 비동기 및 반응형: WebFlux는 비동기 및 반응형 웹 애플리케이션 개발을 지원합니다. 이를 통해 대량의 동시 요청을 효율적으로 처리할 수 있습니다. 2. Reactor 프레임워크: WebFlux는 Reactor 프레임워크를 기반으로 합니다. Reactor는 `Mono`와 `Flux`라는 반응형 타입을 제공하며, 이를 통해 데이터 스트림을 비동기적으로 처리할 수 있습니다. 3. 어노테이션 기반과 함수형 스타일 모두.. 2023. 10. 22.
django.template.exceptions.TemplateDoesNotExist 해결방법 django로 웹 페이지를 만들고 있다. TemplateDoesNotExist 에러가 발생했다. 어떻게 해결해야 할까? BASE_DIR을 지정한다. TEMPLATES[0]["DIRS"]에 template 디렉터리 경로를 입력한다. BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, 'resources')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ '.. 2021. 9. 2.
How do I set up the OS system variables in Spring Boot Application Properties? Introduction Recently, I have a job to use a public repository. But I don't want to make public my configuration information. At last, I found a way to meet my requirements and introduce them. Subject Spring boot application properties file can set up OS system variables. You can follow the instructions below. 1. Set the key and value in an application properties file as shown in the format belo.. 2019. 8. 4.
How to use(insert) spatial data in mysql and JPA. Introduction I introduce how to use spatial type columns in MySQL and JPA. Subject I introduce how to use spatial type columns in MySQL and JPA. MySQL has spatial data types that correspond to OpenGIS classes. Some spatial data types hold single geometry values. GEOMETRY POINT LINESTRING POLYGON GEOMETRY can store geometry values of any type. The other single value types(POINT, LINESTRING, and P.. 2019. 7. 22.
반응형