FreeMarker VS Vaadin

Compare FreeMarker vs Vaadin and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
FreeMarker Vaadin
8 41
929 1,766
1.1% 0.1%
8.7 5.3
5 days ago 5 days ago
Java Java
Apache License 2.0 GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

FreeMarker

Posts with mentions or reviews of FreeMarker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-09.
  • Using FreeMarker template engine in Sitecore Personalize
    1 project | dev.to | 28 Aug 2023
    FreeMarker is a template engine, it allows to generate text output based on templates and dynamic data. It is similar to Mustache, Handlebars, Thymeleaf and other template engines. Templates are written in the FreeMarker Template Language (FTL) that supports conditional blocks, iterations, formatting, and many other capabilities.
  • m8a scenario #1 - Using Coder to Develop Keycloak Templates Live (almost)...
    6 projects | dev.to | 9 Feb 2023
    Getting back to our two main technologies....we have implemented Keycloak as our Identification and Authorization Management system (IAM). However, as these things go, Keycloak has its own tech stack. One of the technologies, of course, is the language they used, which is Java. And being it is Java, they chose to use a templating engine called Freemarker.
  • Typescript, Webpack and legacy jquery with plugins
    1 project | dev.to | 30 Jan 2023
    The project I was working on was a website using Magnolia as their CMS. It uses the Freemarker templating engine under the hood. Essentially these are super-powered HTML files, which give you access to the CMS content. You can still use all of the HTML tags you want, including the
  • DKB in Höchstform
    1 project | /r/Finanzen | 9 Dec 2022
  • Can I use Java to build a website?
    5 projects | /r/java | 2 Nov 2022
    You can use Java for Backend and Frontend. A relative new kid on the block for Frontend is Qute. The general keyword you are searching for is Java Templating Engine. Specific examples would be Thymeleaf or FreeMarker. There are some framework, which offer a lot more than templating like Vaadin or Wicket. Some are just specifications like Jakarta Faces with some of their implementations MyFaces or Mojarra.
  • How to create a Keycloak plugin
    7 projects | dev.to | 31 Oct 2022
    Keycloak uses FreeMaker to store and render templates. Read more about how Keycloak manages its themes in the official documentation.
  • Sharing Components in a Marketplace for Developers with Entando Bundles
    2 projects | dev.to | 10 Aug 2021
    For some component types, there is also the possibility to use a Freemarker template instead for more complex UI components. In this case, it will look like this:
  • Keycloak as OIDC provider
    2 projects | dev.to | 15 Jun 2021
    From sing-up page to admin portal, you can customize pretty much any part of the UI using custom themes. Themes are developed using Freemarker Templates and it's all documented here.

Vaadin

Posts with mentions or reviews of Vaadin. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-30.
  • Java Swing?!
    1 project | /r/informatik | 5 Dec 2023
  • The conjunction of the web
    1 project | dev.to | 27 Aug 2023
    But how do we explain the complexity of the current toolset? This is where the Law of the instrument kicks in: "If the only tool you have is a hammer, it is tempting to treat everything as if it were a nail.". Even if JavaScript was born in the web, JavaScript centered frameworks do not fit properly in the web. That is why we have huge bundles of JavaScript, that is why RSC are necessary (things like RSC were already a thing in Vaadin) and that is how JavaScript became the Birmingham screwdriver.
  • Ask HN: Why is web development such a daunting task?
    5 projects | news.ycombinator.com | 30 May 2023
  • The Dart Side Blog by OnePub – How and when to use isolates – part 2
    1 project | news.ycombinator.com | 24 Apr 2023
    Off-topic but this blog is using https://vaadin.com, that's the first time I am seeing this framework being used!
  • A front-end programming language that don't need html/css, do you know one ?
    2 projects | /r/learnprogramming | 3 Apr 2023
    But there are frameworks like GWT or Vaadin for Java, but none of them really took off afaik, I've never seen a job posting with either of these.
  • Always-Listening Voice Commands for Vaadin web applications
    2 projects | dev.to | 28 Mar 2023
    This small tutorial takes 15 minutes from the start to a working demo. We use Picovoice Porcupine Wake Word Engine to enable a Vaadin-based Java web application.
  • Not a Vaadin developer, yet? Try to guess what this code is doing …
    1 project | dev.to | 15 Feb 2023
    Are you a long-time Java developer using Spring-related tech stack? Vaadin can bring a fresh brief of the air into your daily development routines.
  • 7 years with Vaadin (+SpringBoot) in production. Do we still enjoy it?
    1 project | /r/SpringBoot | 8 Feb 2023
    It’s been 7 years since we deployed our first Vaadin app for production. The whole process has been more than interesting. We developed the application according to an analysis (several modules for the agenda in the field of local government) based on a verbal assignment. The customer started testing on our server and after 2 months found only 3 bugs and requested 2 modifications beyond the original brief. Once implemented, we installed it at the customer’s site. The application started for the first time and is still running :-).
  • The Future (and the Past) of the Web Is Server Side Rendering
    9 projects | news.ycombinator.com | 3 Feb 2023
    > Slightly off topic, but I found JSF the most productive out of any framework.

    In my experience, it has been a horrible technology (even when combined with PrimeFaces) for complex functionality.

    When you have a page that has a bunch of tabs, which have tables with custom action buttons, row editing, row expansion, as well as composite components, modal dialogs with other tables inside of those, various dropdowns or autocomplete components and so on, it will break in new ways all the time.

    Sometimes the wrong row will be selected, even if you give every element a unique ID, sometimes updating a single table row after AJAX will be nigh impossible, other times the back end methods will be called with the wrong parameters, sometimes your composite components will act in weird ways (such as using the button to close a modal dialog doing nothing).

    When used on something simple, it's an okay choice, but enterprise codebases that have been developed for years (not even a decade) across multiple versions will rot faster than just having a RESTful API and some separate SPA (that can be thrown out and rewritten altogether, if need be).

    Another option in the space is Vaadin which feels okay, but has its own problems: https://vaadin.com/

    Of course, my experiences are subjective and my own.

  • Happy path: Publishing a Web Component to Vaadin Add-on Directory
    2 projects | dev.to | 4 Jan 2023
    Did you find an excellent custom element that would make sense in your Vaadin Java web application? Maybe that is a web component that you previously published yourself in npmjs.com?

What are some alternatives?

When comparing FreeMarker and Vaadin you can also consider the following projects:

Thymeleaf - Thymeleaf is a modern server-side Java template engine for both web and standalone environments.

PrimeFaces - Ultimate Component Suite for JavaServer Faces

Handlebars.java - Logic-less and semantic Mustache templates with Java

Apache Wicket - Apache Wicket - Component-based Java web framework

Apache Velocity - Mirror of Apache Velocity Engine

ZK - ZK is a highly productive Java framework for building amazing enterprise web and mobile applications

Mustache.java - Implementation of mustache.js for Java

Spring - Spring Framework

Pebble - Java Template Engine

Spring Boot - Spring Boot

Jtwig Project - Java modern template engine

jwt - Java Web Toolkit