-
A Simple Service with Spring Boot
I will demonstrate how to create a simple Web Service using Spring Boot. This framework makes it almost effortless to develop web services, so long as the appropriate dependencies are in place.
In this example, I will create a Web Service that will read the current temperature from a file and make it available to clients via a RESTful endpoint.
-
Interview: Frank Delporte, Foojay Raspberry Pi Community Manager
Today we’d like to introduce a new community manager for all things Raspberry Pi on foojay: Frank Delporte!
He’s really curious about what’s already been created with Java on the Raspberry Pi and what we can all learn together from these experiences.
You can contact him with a direct message on Twitter to discuss further and share articles for publication on foojay: https://twitter.com/frankdelporte.
-
Introducing JmFrX: A Bridge From JMX to Java Flight Recorder
JmFrX is a small utility which allows you to capture JMX data with Java Flight Recorder.
In this blog post I’m going to explain how to use JmFrX for recording JMX data in your applications, point out some interesting JmFrX implemention details, and lastly will discuss some potential steps for future development of the tool.
-
Monitoring REST APIs with Custom JDK Flight Recorder Events
The Java Flight Recorder (JFR) is an invaluable tool for gaining deep insights into the performance characteristics of Java applications.
In this blog post, we’re going to explore how custom, application-specific JFR events can be used to monitor a REST API, allowing to track request counts, identify long-running requests, and more.
-
A Closer Look at JFR Streaming
Since JDK 14, there is a new kid on the block – Java Flight Recorder streaming, which enables developers to subscribe to JFR data.
It is a feature allowing a developer to subscribe to select JFR data and to decide what to do with that data in the host process. JFR events can also be consumed from a separate process by pointing to the file repo of a separate JVM process – the mechanism is the same.
-
From Azure Active Directory via OpenID Connect to Open Liberty and Java
Long gone are the days when you had to create your own user account management, authentication, and authorization for your web delivered software. Instead, contemporary applications leverage these functions (Identity and Access Management, IAM for short) from an external provider.
Let’s take a look at an example on how to configure the Liberty social login feature as an OpenID Connect client to secure Java applications with Azure Active Directory.