RSocket Using Spring Boot 1. Overview RSocket is an application protocol providing Reactive Streams semantics – it functions, for example, as an alternative to HTTP. In this tutorial, we’re going to look at RSocket using Spring Boot, and specifically how it helps abstract away the lower-level RSocket API. 2. Dependencies… Continue Reading spring-boot-rsocket

Registration with Spring – Integrate reCAPTCHA 1. Overview In this article we’ll continue the Spring Security Registration series by adding Google reCAPTCHA to the registration process in order to differentiate human from bots. 2. Integrating Google’s reCAPTCHA To integrate Google’s reCAPTCHA web-service, we first need to register our site with… Continue Reading spring-security-registration-captcha

The Baeldung Weekly Review 16 1. Spring Quite a lot of webinars and recordings come out this week on Spring: Webinar: Spring Integration 4.0 – The New Frontier (upcoming) Webinar: Data-Driven Applications with Spring and Neo4j (upcoming) Your Data, Your Search, Elasticsearch (recording) Application Security Pitfalls (recording) Add to this… Continue Reading 2014-week-review-16

Java 9 Convenience Factory Methods for Collections 1. Overview Java 9 brings the long-awaited syntactic sugar for creating small unmodifiable Collection instances using a concise one line code. As per JEP 269, new convenience factory methods will be included in JDK 9. In this article, we’ll cover its usage along… Continue Reading java-9-collections-factory-methods