Bean注解用法介绍


prtyaa
prtyaa 2023-12-25 12:24:39 64944
分类专栏: 资讯

今天给大家介绍一下Spring中Bean注解的用法,后续的文章给大家介绍Sping其他注解用法,希望对大家日常工作能有所帮助!

1、首先创建一个maven项目引入spring依赖

 

<dependencies> <!-- https://mvnrepository.com/artifact/org.springframework/spring-context --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.3.9</version> </dependency></dependencies>

 

2、新建一个person.java 实体类

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

package com.spring.config; import com.spring.bean.Person;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration; @Configurationpublic class TestBeanConfig { /*@Bean作用是注册一个Bean,类型为返回值的类型,默认是使用方法名作为id,可以自己定义 * value 可以自定义id,默认和方法名一致 * */ @Bean(value = "person1") public Person person() { return new Person("小王", 35, "北京"); }}


 

4、resources 创建配置文件

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"> <context:component-scan base-package="java"></context:component-scan> <bean id="person" class="com.spring.bean.Person"> <property name="name" value="小明"></property> <property name="age" value="30"></property> <property name="address" value="苏州"></property> </bean></beans>

 

 

5、新建测试类TestBean.java 具体展示注解方式和配置方式的示例

package com.spring.test; import com.spring.bean.Person;import com.spring.config.TestBeanConfig;import org.springframework.context.annotation.AnnotationConfigApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext; public class TestBean { public static void main(String[] args) { //配置文件方式 ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("person.xml"); Person bean = (Person) applicationContext.getBean("person"); System.out.println("配置方式:"); System.out.println(bean); // 注解方式 AnnotationConfigApplicationContext 注解的方式获取spring容器 AnnotationConfigApplicationContext annotationContext = new AnnotationConfigApplicationContext(TestBeanConfig.class); Person annotationPerson = (Person) annotationContext.getBean("person1"); System.out.println("注解方式:"); System.out.println(annotationPerson); // 用来获取Spring容器中指定类型的所有JavaBean的名称 String[] beanNamesForType = annotationContext.getBeanNamesForType(Person.class); for (String item : beanNamesForType) { System.out.println(item); } } }

 

 

6、运行效果:

 

 

 

网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。

本文链接:https://www.xckfsq.com/news/show.html?id=30145
赞同 0
评论 0 条
prtyaaL1
粉丝 1 发表 2554 + 关注 私信
上周热门
银河麒麟添加网络打印机时,出现“client-error-not-possible”错误提示  1487
银河麒麟打印带有图像的文档时出错  1405
银河麒麟添加打印机时,出现“server-error-internal-error”  1194
统信操作系统各版本介绍  1116
统信桌面专业版【如何查询系统安装时间】  1114
统信桌面专业版【全盘安装UOS系统】介绍  1068
麒麟系统也能完整体验微信啦!  1026
统信【启动盘制作工具】使用介绍  672
统信桌面专业版【一个U盘做多个系统启动盘】的方法  616
信刻全自动档案蓝光光盘检测一体机  526
本周热议
我的信创开放社区兼职赚钱历程 40
今天你签到了吗? 27
信创开放社区邀请他人注册的具体步骤如下 15
如何玩转信创开放社区—从小白进阶到专家 15
方德桌面操作系统 14
我有15积分有什么用? 13
用抖音玩法闯信创开放社区——用平台宣传企业产品服务 13
如何让你先人一步获得悬赏问题信息?(创作者必看) 12
2024中国信创产业发展大会暨中国信息科技创新与应用博览会 9
中央国家机关政府采购中心:应当将CPU、操作系统符合安全可靠测评要求纳入采购需求 8

添加我为好友,拉您入交流群!

请使用微信扫一扫!