Spring系列(二):Bean注解用法介紹

? ?

? ? ? ? ?
今天給大家介紹一下Spring中Bean注解的用法,后續(xù)的文章給大家介紹Sping其他注解用法,希望對(duì)大家日常工作能有所幫助!
1、首先創(chuàng)建一個(gè)maven項(xiàng)目引入spring依賴
2、新建一個(gè)person.java 實(shí)體類
package com.spring.bean;
public class Person {
? ? private String name;
? ? private Integer age;
? ? private String address;
? ? public Person(String name, Integer age, String address) {
? ? ? ? this.name = name;
? ? ? ? this.age = age;
? ? ? ? this.address = address;
? ? }
? ? public Person() {
? ? }
? ? public String getName() {
? ? ? ? return name;
? ? }
? ? public void setName(String name) {
? ? ? ? this.name = name;
? ? }
? ? public Integer getAge() {
? ? ? ? return age;
? ? }
? ? public void setAge(Integer age) {
? ? ? ? this.age = age;
? ? }
? ? public String getAddress() {
? ? ? ? return address;
? ? }
? ? public void setAddress(String address) {
? ? ? ? this.address = address;
? ? }
? ? @Override
? ? public String toString() {
? ? ? ? return "Person{" +
? ? ? ? ? ? ? ? "name='" + name + '\'' +
? ? ? ? ? ? ? ? ", age='" + age + '\'' +
? ? ? ? ? ? ? ? ", address='" + address + '\'' +
? ? ? ? ? ? ? ? '}';
? ? }
}
3、新建配置類?TestBeanConfig.java
4、resources 創(chuàng)建配置文件
5、新建測(cè)試類TestBean.java 具體展示注解方式和配置方式的示例
6、運(yùn)行效果:
? ? ? ?

?? ? ? ?