EclipseSource Blogs
Lesen Sie die neusten Blogposts
J2V8 Supports 16bit Characters
When J2V8 was first released, all Java characters passed between Java and V8 were converted to 8bit C-Style strings. For many applications this was just fine, but if your JavaScript contained 16 bit …
TypedArrays -- Sharing Memory Between V8 and Java
J2V8 provides the technology to link V8 and Node.js with the JVM. Using JNI, Java developers can directly call V8 and Node.js APIs. This seamless integration brings improved JavaScript performance, …
Announcing J2V8 4
After over a year of development, I am very excited to announce that J2V8 4 is publicly available on all supported platforms. J2V8 is a set of V8 bindings for Java. This means that you can embed V8 …
Running Node.js on the JVM
Gone are the days of single vendor lock-in, where one technology stack is used across an entire organization. Even small organizations and hobbyists will find themselves mixing technologies in a …
JSON Schema - the good, the bad and the ugly
In the last years we have been heavily using JSON Schema, a web standard to describe JSON instances/your data in web applications. For example in the JSONForms project we make heavy use of JSON …
Keyed-Hash Message Authentication Code in REST APIs
REST APIs that serve their content via HTTP have limited options for authentication. One of these is request signing. With a little bit of custom specification the standard approach HMAC can be …