A hybrid Java/Clojure library designed to demonstrate how to setup Java interop using Maven This is a complete Maven-first Clojure/Java interop application. It details how to create a Maven application, enrich it with clojure code, call into clojure from Java, and hook up the entry points for both Java and Clojure within the same project.Continue reading “How To Cleanly Integrate Java and Clojure In The Same Package”
Tag Archives: java
The Mind Think and Practice of Designing Testable Routing
Integrating applications, data, and automated workflow presents a uniquely entrenched set of dependencies for software developers. The need for an endpoint to exist in order to integrate with it seems basic and undeniable. Additionally, the data that an endpoint produces or consumes needs be available for the integration to work. It turns out that theseContinue reading “The Mind Think and Practice of Designing Testable Routing”
Surfing the ReferencePipeline in Java 8
Java 8 includes new a Stream Processing API. At its core is the ReferencePipeline class which gives us a DSL for working with Streams in a functional style. You can get an instance of a ReferencePipeline flowing with a single expression. The MapReduce DSL has the essential set of list processing operations such as querying,Continue reading “Surfing the ReferencePipeline in Java 8”
NTLM Authentication in Java with JCifs
In enterprise software development contexts, one of the frequent needs we encounter is working with FileSystems remotely via CIFS, sometimes referred to as SMB. If you are using Java in these cases, you’ll want JCifs, a pure Java CIFS implementation. In this post, I’ll show you how to remotely connect to a Windows share on an ActiveContinue reading “NTLM Authentication in Java with JCifs”
XML Interoperability of Serialized Entities in Java and .NET
Abstract: In order to exchange structured data directly between the platforms, we must be able to easily take the marshalled or serialized definition of the object and turn it into an object in memory. There are standard ways of marshalling of objects to XML in both Java and .NET. I have found it a littleContinue reading “XML Interoperability of Serialized Entities in Java and .NET”