search
HomeJavajavaTutorialHow to create javabean

How to create javabean

May 22, 2019 pm 03:27 PM
java

How to create a javabean: First create a Web project, create a package in the src directory, and create a public class in the package; then modify the member variables with private to make the member variables private; then add the public class to the Create a parameterless constructor; finally use the getter and setter methods to wrap the member variables.

How to create javabean

#This article will introduce how Javabeans are created and what are the rules?

JavaBean is a reusable Java component that can be called by Java applications such as Applet, Servlet, JSP, etc. It can also be used visually by Java development tools. It includes properties (Properties), methods (Methods), events (Events) and other features.

JavaBeans are a software component model, just like ActiveX controls, they provide known functionality and can be easily reused and integrated into Java classes in applications. Any object that can be created with Java code can be encapsulated using JavaBeans. By rationally organizing JavaBeans with different functions, a brand new application can be quickly generated. If this application is compared to a car, then these JavaBeans are like the different parts that make up the car. For software developers, the biggest advantage brought by JavaBeans is that it fully improves the reusability of code and plays a positive role in the maintainability and ease of maintenance of software.

JavaBean is usually used in Jsp pages. There are two ways to create JavaBean. One is to create a JavaBean instance just like using a normal Java class. You can use the New keyword and then use the constructor method to instantiate a JavaBean instance. The other is to use JavaBean in Jsp pages usually using Jsp action tags. Here we mainly introduce the first creation method.

First create a Web project, because JavaBean is a Java class and is created in the same way as an ordinary Java class. Create a package in the src directory and create a class class in the package.

Four principles of JavaBean:1. Public class 2. No-argument constructor 3. Private member variables 4. Getter and setter methods wrap member variables.

A JavaBean is formed based on these four principles.

Public class: Modify it with public

public class Users {
}

Private member variable: Modify the variable with private

public class Users {
	private String username;
	private String password;
}

In Create a parameterless constructor in the Users class:

public class Users {
	private String username;
	private String password;
	public Users(){}
}

The getter and setter methods wrap member variables:

public class Users {
	private String username;
	private String password;
	public Users(){}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	
}

A JavaBean is created.

The above is the detailed content of How to create javabean. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft