깃허브 링크: https://github.com/hoangtien2k3/reactify-core
이 라이브러리는 반응형 프로그래밍을 지원하는 두 가지 강력한 도구인 Spring WebFlux 및 Reactor-Core의 핵심 구성 요소를 기반으로 구축되었습니다. 이 라이브러리를 사용하면 비동기식 마이크로서비스 애플리케이션을 쉽게 구축하여 비선형 데이터 스트림을 효율적으로 처리할 수 있습니다.
주요 기능은 다음과 같습니다.
뛰어난 성능과 우수한 반응성:
비차단 메커니즘을 사용하는 이 라이브러리는 너무 많은 스레드를 생성하지 않고도 수천 개의 동시 요청을 처리할 수 있으므로 리소스 로드가 줄어들고 응답 속도가 향상됩니다.
간편한 스트림 처리:
Reactor-Core는 실시간 알림 시스템, 이벤트 처리, 빅데이터 처리 시스템 등 지속적인 데이터 처리가 필요한 애플리케이션에 적합한 스트림 처리를 위한 강력한 API를 제공합니다.
Spring 생태계와의 손쉬운 통합:
이 라이브러리는 Spring Security, Spring Data R2DBC 등 Spring 생태계의 구성 요소와 잘 작동하도록 설계되어 적은 노력으로 완전한 애플리케이션을 구축하는 데 도움이 됩니다.
@ComponentScan(basePackages = { "com.reactify.*", // add default: com.reactify.* "com.example.myproject" // varies depending on your project }) @SpringBootApplication public class ExampleApplication { public static void main(String[] args) { SpringApplication.run(Example.class, args); } }
# spring config spring: main: web-application-type: reactive allow-bean-definition-overriding: true messages: basename: i18n/messages #connect db R2DBC PostgreSQL r2dbc: url: r2dbc:postgresql://localhost:5434/auth username: admin password: admin pool: max-size: 10 initial-size: 5 # Config connect Keycloak security: oauth2: client: provider: oidc: token-uri: ${keycloak.serverUrl}/realms/${keycloak.realm}/protocol/openid-connect/token registration: oidc: client-id: ${keycloak.clientId} client-secret: ${keycloak.clientSecret} authorization-grant-type: ${keycloak.grantType} #password || #client_credentials resourceserver: jwt: jwk-set-uri: ${keycloak.serverUrl}/realms/${keycloak.realm}/protocol/openid-connect/certs keycloak: client-id: ${keycloak.clientId} # Web client config client: #keycloak keycloak: address: http://localhost:8080/realms/ezbuy-server/protocol/openid-connect name: keycloak auth: client-id: ezbuy-client client-secret: mI92QDfvi20tZgFtjpRAPWu8TR6eMHmw #notification notification: internal-oauth: true address: http://localhost:7777/v1/transmission name: notiServiceClient pool: max-size: 100 max-pending-acquire: 100 timeout: read: 60000 write: 1000 # Unauthenticated endpoints config application: http-logging: request: enable: true header: true param: true body: true response: enable: true body: true whiteList: - uri: /v1/auth/generate-otp methods: - POST - uri: /** methods: - OPTIONS - uri: /v1/auth/get-all methods: - GET data: sync-data: limit: 500 #keycloak client config keycloak: clientId: ezbuy-client clientSecret: mI92QDfvi20tZgFtjpRAPWu8TR6eMHmw realm: ezbuy-server serverUrl: http://localhost:8080 grantType: password host: localhost # minio server config minio: bucket: ezbuy-bucket enabled: true baseUrl: http://localhost:9000 publicUrl: http://localhost:9000/ezbuy-bucket accessKey: 4DoaZ0KdzpXdDlVK104t secretKey: nuRiQUIJNVygMOHhmtR4LT1etAa7F8PQOsRGP5oj private: bucket: ezbuy-private
# Using Maven mvn spring-boot:run # Using Gradle gradle bootRun
webflux 마이크로서비스 프로젝트용 reactify-core 라이브러리: keycloak-auth-service
누구나 피드백을 제공하고 오류를 찾아내거나 이 라이브러리를 개선하여 커뮤니티를 더욱 강력하게 발전시킬 수 있습니다. 정말 감사합니다
좋은 하루 보내세요
위 내용은 백엔드 마이크로서비스 Webflux(Reactor-core)용 Java 라이브러리 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!