spring-boot-starter-web
This guide shows compares the Application Class of a Spring Boot application vs a Micronaut Framework application.
This guide compares how to create a bean in a Spring Boot application with @Configuration vs. in a Micronaut application with @Factory.
This guide compares how to mark a class as a bean in a Spring Boot application with @Component vs. in a Micronaut application with @Singleton.
This guide compares using Spring's UriComponentsBuilder vs Micronaut Framework's UriBuilder.
This guide compares how to test serialization and deserialization with Micronaut Framework and Spring Boot.
This guide compares how to implement a GET endpoint with Micronaut Framework and Spring Boot.
This guide compares how to add POST endpoint in both Micronaut and Spring Boot applications.
This guide compares how to add Spring Data or Micronaut Data to power a GET endpoint in both Micronaut and Spring Boot applications.
This guide compares how to create a GET endpoint that returns a paginated JSON Array in Micronaut and Spring Boot applications.
This guide compares how to secure a REST API with basic authentication in Micronaut and Spring Boot applications.
This guide shows how to use Micronaut Data from a Spring Boot application.