Compare the functionality of Spring Boot with Micronaut.
Also find me here:
Baeldung Author
Amy DeGregorio
I'm a freelance web application developer with over fifteen years of experience working with Java and JEE and an interest in code generation. I really enjoy sharing my knowledge with others.
Here's what I've written (so far):
Baeldung on Java
- All
- Java (6)
- Spring Boot (5)
- Spring MVC (4)
- Java IO (3)
- Core Java (3)
- JVM (2)
- Groovy (2)
- DevOps (2)
- Spring Web (1)
- Spring Data (1)
- REST (1)
- Maven (1)
- Logging (1)
- Jackson (1)
- JPA (1)
- IDE (1)
- Data (1)
Common Shortcuts in Eclipse
Filed under IDE
Learn most common keyboard shortcuts available in the Eclipse IDE.
Java Objects.hash() vs Objects.hashCode()
Filed under Core Java
Learn how and when to use the Object.hashCode(), Objects.hashCode() and Objects.hash().
How to Enable All Endpoints in Spring Boot Actuator
Filed under Spring Boot
Have a look at how to enable all the endpoints in the Spring Boot Actuator.
Configure the Heap Size When Starting a Spring Boot Application
Filed under JVM, Spring Boot
Learn how to override the Java heap settings for three common ways of running Spring Boot applications.
Writing byte[] to a File in Java
Filed under Java IO
When we need to write an array of bytes to a file in Java, there are a few options. We can use either the built-in APIs or a few common libraries.
Constants in Java: Patterns and Anti-Patterns
Filed under Java
Learn about using constants in Java with a focus on common patterns and anti-patterns
IllegalArgumentException or NullPointerException for a Null Parameter?
Filed under Java
Explore the issue of which exception to throw when someone passes a null parameter to one of our methods: IllegalArgumentExcpetion or NullPointerException.
Class.isInstance vs Class.isAssignableFrom and instanceof
Filed under Core Java
A quick and practical overview of Class.isInstance and Class.isAssignableFrom methods.