Software Alternatives & Reviews
Table of contents
  1. Videos
  2. Social Mentions
  3. Comments

Micronaut Framework

Build modular easily testable microservice & serverless apps subtitle

Micronaut Framework Reviews and details

Screenshots and images

  • Micronaut Framework Landing page
    Landing page //
    2022-02-01

Badges

Promote Micronaut Framework. You can add any of these badges on your website.
SaaSHub badge
Show embed code

Videos

Micronaut Framework | Build Microservices with This JVM-Based Framework | Java Techie

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Micronaut Framework and what they use it for.
  • Javalin – a simple web framework for Java and Kotlin
    Micronaut has a share of the space too. https://micronaut.io/ However, you’re right that Spring Boot has the lions share of the Java ecosystem. - Source: Hacker News / 3 months ago
  • Spark – A web micro framework for Java and Kotlin
    I've used vert.x in a big project once. I don't ever want to do that again. Performance is pretty good, but the developer experience is beyond clunky. My current favourite Java server framework is Micronaut. Great performance and easy to develop for! https://micronaut.io/. - Source: Hacker News / 3 months ago
  • Java 21 Released
    One of the most common web frameworks used is Spring Boot - here is their quickstart: https://spring.io/quickstart Newer alternatives are: https://micronaut.io/ and https://quarkus.io/ If you want to have something really simple look at Javalin: https://javalin.io/. - Source: Hacker News / 7 months ago
  • Java consumes 38x less energy than Python
    I wonder how much you'd save with Micronaut: https://micronaut.io/ > Micronaut is a software framework for the Java virtual machine platform. It is designed to avoid reflection, thus reducing memory consumption and improving start times. Features which would typically be implemented at run-time are instead pre-computed at compile time. https://en.wikipedia.org/wiki/Micronaut_(framework) I don't think you'd go down... - Source: Hacker News / 10 months ago
  • mlfx FXML compiler
    I'd like to introduce my project. It is called mlfx. It can compile FXML ahead of time. It is basically an annotation processor, which internally uses Micronaut framework's AST abstraction and compiles fxml files directly to JVM bytecode. This decreases UI load time and also helps with native-image reflection configs. It also has some compliance tests that load compiled code and Check resulting object graph... Source: 11 months ago
  • Virtual Threads Arrive in JDK 21, Ushering a New Era of Concurrency
    When it comes to full stack frameworks, Micronaut(https://micronaut.io/) is actually good and pleasant to work with. - Source: Hacker News / about 1 year ago
  • Tech-stack for web application using Kotlin?
    For the server Quarkus and Micronaut might be interesting besides Spring Boot. Quarkus is more popular and backed by RedHat (so probably here to stay). Source: about 1 year ago
  • Would love some guidance in how to get started with building web projects with Java.
    Spring boot is still The King. Although I've not done more than hello world with Micronaut, it might have easier learning curve than Spring (and concepts are similar to Spring so you can carry over later to learn Spring). It could also be a useful skill in world of microservices these days. Source: over 1 year ago
  • What are some of the biggest problems you personally face in Java?
    Have you looked into using Micronaut or Quarkus with GraalVM? It will help with startup time. Take a look at this Micronaut guide if you’re interested. Source: over 1 year ago
  • Quarkus or Spring for a Management System? Why?
    Don’t forget about Micronaut, which was inspired by Spring. Source: over 1 year ago
  • Measuring Java 11 Lambda cold starts with SnapStart - Part 2 Using Micronaut Framework
    Micronaut Framework and its features Micronaut Framework is modern, JVM-based, full-stack framework for building modular, easily testable microservice and serverless applications. It gives us the possibility to create our application using the launcher or CLI, provides customer validation, API Gateway integration, GraalVM (Native Image) integation, supports Maven und Gradle and much more. What is very important,... - Source: dev.to / over 1 year ago
  • Is it okay to use com.sun.net.httpserver.HttpServer?
    I've been recently working on a simple CRUD microservice implemented in Java. You may immediately think of using frameworks such as Spring Boot, Quarkus or Micronaunt. However, no frameworks were allowed, and libraries were only permitted, if the functionality provided is not natively available or too complex to build. Long story short, I had to find a HTTP server implementation. - Source: dev.to / over 1 year ago
  • Most important Java topics
    I'd take a look at Micronaut and/or Quarkus. I've been hearing a lot about them, and have enjoyed using Micronaut coming from Spring. Source: over 1 year ago
  • Is anyone using Java Spring Boot in AWS Lambda?
    Also check out Micronaut. I found it very easy to pick up coming from Spring. Source: over 1 year ago
  • Oracle joins the Micronaut Framework as an Engineering Partner
    The page is impossible to read dark theme for about 40% of Earth's population: https://micronaut.io/. Source: over 1 year ago
  • JBCNConf 2022: A great farewell
    I worked with Micronaut back in 2019-2020, and I liked it but putting my taste aside, the work they are doing to enable full integration with GraalVM deserves a watch. Suppose you are a developer using Spring or Quarkus and haven't tested Micronaut. Give it a try. Alvaro Sánchez-Mariscal introduced a bit of the framework idea and GraalVM project and made a small demo. - Source: dev.to / almost 2 years ago
  • resources to learn java J2EE technologies
    The specification playground is called microprofile, where new specifications are rapidly prototyped. Some products are built around only that platform like quarkus, helidon or Micronaut. Source: almost 2 years ago
  • why does java require tomcat?
    In Java the standard library does not tell you how to build an http server - there are a lot of frameworks for that and you can choose one that fits to your particular needs. It doesn't have be Tomcat. For example, you can go with Spring Boot - probably the most popular right now and it indeed wraps around Tomcat but in a way that lets you be almost unaware. But since you're starting, I'd recommend you look into... Source: almost 2 years ago
  • Ask HN: What is a modern Java environment?
    I can't speak to how prevalent it is in the industry, but something my team has started doing in our web services is building with GraalVM and deploying native images. The build time can be super long, but the benefit is incredibly fast start-up time, which really benefits horizontal scaling. We're using Quarkus (https://quarkus.io), which is largely built on Vertx which was mentioned elsewhere, but other... - Source: Hacker News / about 2 years ago
  • I want to create a Web project that uses Java as backend and MySQL for Database.
    Another option I'd consider would be Dropwizard, which is really just a curated collection of good tools that work well together. If you wanted to get into the frameworks that abuse annotations like Spring, I'd look at Quarkus or Micronaut first, personally. Source: about 2 years ago
  • Experienced Java/Kotlin developers: what libraries do you use in your day to day work?
    There are projects that feel lighter-weight such as Micronaut and DropWizard, although in many regards I feel like this is just a perception (Spring is quite modular and you can pull in what you need, but that process can involve some nitty-gritty tailoring because the default is batteries-included). Source: about 2 years ago

Do you know an article comparing Micronaut Framework to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Generic Micronaut Framework discussion

Log in or Post with

This is an informative page about Micronaut Framework. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.