DEV Community

Diego Brener
Diego Brener

Posted on

3

Java Beans

Java Beans

Java Beans are reusable software components according to the specification. A Java Bean can encapsulate many objects into a single object, and we can use them through "get" and "set" methods in various places in our application. Besides providing easy maintenance, it also allows our objects to be eligible for other tools, such as persistence tools.

To be defined as Java Beans, the class must follow some conventions, such as:

  • Implement the java.io.Serializable interface (to allow the object's state to be persisted and retrieved).
  • Have a no-argument constructor (no-arg constructor).
  • Have private properties accessible by "get" and "set" methods.

Example of a bean:

// Implements Serializable
public class Pessoa implements java.io.Serializable {

    // Has private properties
    private String nome;

    // Get methods
    public String getNome() {
        return nome;
    }

    // Set methods
    public void setNome(String nome) {
        this.nome = nome;
    } 


    /* No-argument constructor */
    public Pessoa() {
        this.nome="";
    }
}

Enter fullscreen mode Exit fullscreen mode

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay