Build a Secure Spring Boot App in Minutes
Video/Stream
This screencast walks you through building a secure Spring Boot application in two commands using …
Video/Stream
This screencast walks you through building a secure Spring Boot application in two commands using …
Video/Stream
This screencast show you five tools to help improve and reduce bugs in your Java code!
This tutorial shows show you how to secure legacy applications with OAuth 2.0 and Spring Cloud Gateway.
One of the biggest challenges of adding OAuth 2.0 support to legacy applications is a lack of support in the underlying framework. Maybe it’s homegrown, or maybe it’s just old? Either way, migrating away from an old form-based login doesn’t need to be so painful. In this post, I’ll walk you through a low-code option using Spring Cloud Gateway and Okta.
Five great tools to reduce bugs and make your Java code more secure!
Writing quality code takes practice. To write better code, you need to know what should improve. Code quality and what makes code easy to read are very subjective; ask five different developers, you will get six different answers. For this post, I’ll avoid most of the subjective and focus on ways to detect real issues and potential bugs.
Tutorial: Learn how to build native binaries from a Java application with GraalVM's native-image tool.
There has been much buzz about GraalVM and what it means for the Java world. GraalVM is a Java distribution from Oracle that adds a bunch of features, most notably a new JIT compiler, polyglot capabilities, an LLVM runtime… and the ability to turn your Java application into a native binary.
This last one offers the potential to distribute Java applications as a single binary, and a few frameworks like Quarkus, Helidon, and Micronaut already take advantage of this feature. Native images also open up the possibility to distribute Java applications as CLI applications, which has recently been the near-exclusive domain of Go and Node. This tutorial will show you how!