Author: Matti Tahvonen
![Dynamic Form Generation vs. Binder in Vaadin: Pros, Cons & Best Tools](https://blog.vaadin.com/hubfs/binder.png)
Andreas Lange from Pivotal recently published an insightful example where a Vaadin application dynamically generates a grid and a form based on domain objects annotated with metadata that provides hints for the presentation layer. This inspired me to revisit a topic that is both old and new in the Vaadin ecosystem.
![Unleashing Vaadin for GUI-Based Java Scripts with JBang](https://blog.vaadin.com/hubfs/javaobjects-1.png)
Unleashing Vaadin for GUI-Based Java Scripts with JBang
Making Java work for utility apps and scripts Java has long been known for its robustness and scalability, but it has never been the go-to choice for small utility apps or quick scripts. While tools like Bash and Python are commonly used for scripting, they often come with their own set of ...
![Learn Why You Should Use Java to Style Vaadin Components](https://blog.vaadin.com/hubfs/styling%20ui%20componennt.png)
Use Java - It can be the most elegant method for you
TLDR: this is a ranty reply to a recent article about styling I didn't fully agree with. The rest of the TLDR is in the Java code example. Java code can be elegant—even when it’s used to adjust the style of your UI components. In a recent article about theming Vaadin applications, my colleague ...
![learn how to build a custom UI without an API using Vaadin](https://blog.vaadin.com/hubfs/CustomUI.png)
Implementing a custom UI for a web app that has no API
It has happened before, and it happened again. I found myself dissatisfied with software I had to use multiple times a week. As a professional UI developer, I am particularly sensitive to bad UX. When a perfectly functional phone reservation service for my home island’s ferry was replaced with a ...
![Common pitfalls in Java development: Using Java classes for cleaner code](https://blog.vaadin.com/hubfs/Java%20classes.png)
The fear of classes is real—Here’s how to beat it in Java
“Java is a high-level, class-based, object-oriented programming language” - Wikipedia. I get to see and read a lot of Java code at work. Sometimes, I even get to write some.🥳 Recently, I have noticed a tendency that we Java developers are, for some (wrong?) reason, afraid of classes. A class is a ...
![How to publish Java libraries to Maven Central using your GitHub account](https://blog.vaadin.com/hubfs/Maven.png)
How to publish Java libraries to Maven Central using your GitHub account
The Central Repository, often referred also as Maven Central or simply Central, is the primary repository for publicly shared JVM libraries, independent of the actual build tool. For example, since JCenter was closed, you are most likely using Maven Central, even if you wouldn’t be using Maven. ...
![How to display Java objects in the UI](https://blog.vaadin.com/hubfs/javaobjects.png)
Three quick ways to display your Java objects in the UI
As a developer, there often comes a time when you need to quickly display your data structures in a human-readable format on the screen. During development, debuggers often provide a nice tree-like view of your data objects, which helps visualize the structure. Building something similar manually ...
![Handling slow actions in the Java UI](https://blog.vaadin.com/hubfs/slowui.png)
Handling slow backend actions in Vaadin apps
Vaadin’s business-app-oriented web frameworks come with a helpful productivity feature that automatically indicates to users when a backend call takes unusually long. While this feature is incredibly useful for developers to understand and manage performance, and is sufficient for most backend ...
![Building Vaadin add-ons with minimal dependencies and Spring Boot setup](https://blog.vaadin.com/hubfs/Optimalprojectsetup.png)
Building Vaadin add-ons with minimal dependencies and Spring Boot setup
In this blog, we'll show you how to minimize dependencies in Vaadin add-ons, use Spring Boot for easy development and testing, and set up a clean Maven project for compatibility with various tech stacks. It's crucial to keep the number of transitive dependencies in your add-ons to a minimum. This ...
![Learn how to use Web Serial API for device integration in Java web apps](https://blog.vaadin.com/hubfs/Device%20integration.png)
Reading electronic competition card data with Web Serial API
In this blog, we'll cover how to integrate hardware devices like USB card readers with Java web apps using the Web Serial API in a Vaadin app. Many developers rule out web apps immediately when device integration is involved. But in many cases, it is for the wrong reasons. Technologies have ...