Category: Java

Using Couchbase in a JavaFX Desktop Application

Using Couchbase in a JavaFX Desktop Application

I’ve spent quite a bit of time dabbling with Couchbase and web applications using the awesome Java SDK, but did you know you can create desktop applications that use Couchbase to store data as well? Java desktop frameworks like JavaFX...

New Raw Query Result for the Java SDK

New Raw Query Result for the Java SDK

Latest version of our Java SDK (2.3.3 at the time of writing) introduces a new class: RawQueryExecutor. It gives you the direct result of a N1QL or FTS query as a JSON String or JsonObject, just like if you were...

Collecting iBeacon Data with Couchbase and Raspberry Pi IoT Devices

Collecting iBeacon Data with Couchbase and Raspberry Pi IoT Devices

Not too long ago I wrote about using Couchbase to synchronize data on an Intel IoT Gateway device.  In this project I was creating a Java application that was installed to an IoT device that had bluetooth and wireless internet...

The Simplicity of RxJava with N1QL Queries and Couchbase

The Simplicity of RxJava with N1QL Queries and Couchbase

The Simplicity of RxJava with N1QL Queries and Couchbase Have you ever tried to query Couchbase using N1QL and the Java SDK's synchronous API? It works well and isn't particularly difficult, but I find it to be a little messy,...

Give some Ratpack Love to your Spring Boot Application

Give some Ratpack Love to your Spring Boot Application

I recently started working with Ratpack and I quite like it. I mostly did quick projects from scratch. But I would like to use it in an existing Spring Boot application to replace the traditional MVC part. This is actually...

Using Spring Data Couchbase in a CDI Application

Using Spring Data Couchbase in a CDI Application

If you are in the JEE space and want a modern data management layer for your NoSql applications, you might find yourself quickly limited. There are some interesting projects like Hibernate OGM or Deltaspike‘s Data module but none of them...

Announcing the new Couchbase Spark Connector

Announcing the new Couchbase Spark Connector

Announcing the New Couchbase Spark Connector Couchbase Spark Connector 1.2.0 is now available. It includes significant new features and enhancements, as well as support for Apache Spark 1.6. On behalf of our outstanding product development team, I’m very pleased to...

Vaadin/Couchbase CRUD Sample

Vaadin/Couchbase CRUD Sample

Last week while I was at JFokus I met Matti Tahvonen, he works at Vaadin. They have been proposing an open source web framework for rich Internet applications in Java for years and do it really well. I am personally...

Getting Leaner with SubDocument and the Java SDK

Getting Leaner with SubDocument and the Java SDK

In this blog post we’ll introduce an exciting new feature of the upcoming Couchbase Server version 4.5 (codename Watson), now in Beta. We are talking about the Sub-Document API (shortened to subdoc). What Is It About? The Client API Lookup...

A CRUD REST API with Couchbase, RxJava and Ratpack

A CRUD REST API with Couchbase, RxJava and Ratpack

In my two previous blog posts I have introduced Ratpack and the lightweight ODM layer available in our Java SDK. This post will build up on them and showcase a REST API to manage users through the Couchbase repository. I...

Ratpack, Couchbase and RxJava

Ratpack, Couchbase and RxJava

Yesterday I left you with rough code that started a Ratpack server and used a synchronous Couchbase repository, leaving the RxJava part out. I intend to fix that today, and also tell you more about Ratpack. I am not going...

Getting Started with Ratpack and Couchbase

Getting Started with Ratpack and Couchbase

I recently started playing with Ratpack.   It's a set of Java libraries for buiding modern HTTP applications. To go beyond that simple definition, Ratpack is non-blocking, asynchronous and netty-based. A bit like our Java SDK. So it comes as...