Spring依赖注入多种类型数据的示例代码


Posted in Java/Android onMarch 31, 2022

Student实体类

package entity;
import java.util.*;
/**
 * @author LeDao
 * @company
 * @create 2022-02-13 21:26
 */
public class Student {
    private int id;
    private String name;
    private StudentClass studentClass;
    private String[] books;
    private List<String> hobbies;
    private Map<String, String> cards;
    private Set<String> games;
    private String wife;
    private Properties info;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    public String getName() {
        return name;
    public void setName(String name) {
        this.name = name;
    public StudentClass getStudentClass() {
        return studentClass;
    public void setStudentClass(StudentClass studentClass) {
        this.studentClass = studentClass;
    public String[] getBooks() {
        return books;
    public void setBooks(String[] books) {
        this.books = books;
    public List<String> getHobbies() {
        return hobbies;
    public void setHobbies(List<String> hobbies) {
        this.hobbies = hobbies;
    public Map<String, String> getCards() {
        return cards;
    public void setCards(Map<String, String> cards) {
        this.cards = cards;
    public Set<String> getGames() {
        return games;
    public void setGames(Set<String> games) {
        this.games = games;
    public String getWife() {
        return wife;
    public void setWife(String wife) {
        this.wife = wife;
    public Properties getInfo() {
        return info;
    public void setInfo(Properties info) {
        this.info = info;
    @Override
    public String toString() {
        return "Student{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", studentClass=" + studentClass +
                ", books=" + Arrays.toString(books) +
                ", hobbies=" + hobbies +
                ", cards=" + cards +
                ", games=" + games +
                ", wife='" + wife + '\'' +
                ", info=" + info +
                '}';
}

StudentsClass实体类

package entity;
/**
 * @author LeDao
 * @company
 * @create 2022-02-14 14:11
 */
public class StudentClass {
    private int id;
    private String name;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    @Override
    public String toString() {
        return "Class{" +
                "id=" + id +
                ", name='" + name + '\'' +
                '}';
    }
}

beans.xml

下面展示的数据类型有:一般类型、对象、数组、List、Map、Set、空值、Properties

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="studentClass1" class="entity.StudentClass">
        <property name="id" value="1"/>
        <property name="name" value="软件工程3班"/>
    </bean>
    <bean id="user1" class="entity.Student">
        <!--一般类型-->
        <property name="id" value="1"/>
        <property name="name" value="tom"/>
        <!--对象-->
        <property name="studentClass" ref="studentClass1"/>
        <!--数组-->
        <property name="books">
            <array>
                <value>Java编程思想</value>
                <value>MySQL必知必会</value>
                <value>平凡的世界</value>
            </array>
        </property>
        <!--List-->
        <property name="hobbies">
            <list>
                <value>唱</value>
                <value>跳</value>
                <value>rap</value>
                <value>打篮球</value>
            </list>
        </property>
        <!--Map-->
        <property name="cards">
            <map>
                <entry key="身份证" value="123"/>
                <entry key="校园卡" value="321"/>
            </map>
        </property>
        <!--Set-->
        <property name="games">
            <set>
                <value>LOL</value>
                <value>DNF</value>
                <value>COC</value>
            </set>
        </property>
        <!--空值-->
        <property name="wife">
            <null/>
        </property>
        <!--Properties-->
        <property name="info">
            <props>
                <prop key="userName">root</prop>
                <prop key="password">123456</prop>
            </props>
        </property>
    </bean>
</beans>

测试

import config.MyConfig;
import entity.Student;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
 * @author LeDao
 * @company
 * @create 2022-02-12 15:56
 */
public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context=new ClassPathXmlApplicationContext("beans.xml");
        Student student = (Student) context.getBean("user1");
        System.out.println(student);
    }
}

到此这篇关于Spring依赖注入多种类型数据的文章就介绍到这了,更多相关Spring依赖注入内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Java/Android 相关文章推荐
springcloud之Feign超时问题的解决
Jun 24 Java/Android
spring项目中切面及AOP的使用方法
Jun 26 Java/Android
jackson json序列化实现首字母大写,第二个字母需小写
Jun 29 Java/Android
Java实现多文件上传功能
Jun 30 Java/Android
Java基础之详解HashSet的使用方法
Jun 30 Java/Android
浅谈resultMap的用法及关联结果集映射
Jun 30 Java/Android
JUnit5常用注解的使用
Jul 02 Java/Android
SpringBoot整合Mybatis Generator自动生成代码
Aug 23 Java/Android
Java spring单点登录系统
Sep 04 Java/Android
Spring Boot 实现 WebSocket
Apr 30 Java/Android
Java实现字符串转为驼峰格式的方法详解
Jul 07 Java/Android
springboot+rabbitmq实现智能家居实例详解
Jul 23 Java/Android
springboot layui hutool Excel导入的实现
spring注解 @PropertySource配置数据源全流程
Mar 25 #Java/Android
Netty客户端接入流程NioSocketChannel创建解析
Mar 25 #Java/Android
Java 超详细讲解设计模式之中的抽象工厂模式
Netty分布式客户端处理接入事件handle源码解析
Java 超详细讲解IO操作字节流与字符流
Netty分布式客户端接入流程初始化源码分析
Mar 25 #Java/Android
You might like
PHP保存session到memcache服务器的方法
2016/01/19 PHP
JS获取地址栏参数的小例子
2013/08/23 Javascript
js实现网页标题栏闪烁提示效果实例分析
2014/11/20 Javascript
jquery操作对象数组元素方法详解
2014/11/26 Javascript
浅谈JavaScript实现面向对象中的类
2014/12/09 Javascript
JS模拟Dialog弹出浮动框效果代码
2015/10/16 Javascript
jQuery的框架介绍
2016/05/11 Javascript
javascript时间差插件分享
2016/07/18 Javascript
第一次接触神奇的Bootstrap网格系统
2016/07/27 Javascript
详解nodejs微信公众号开发——4.自动回复各种消息
2017/04/11 NodeJs
微信小程序 http请求的session管理
2017/06/07 Javascript
bootstrap多层模态框滚动条消失的问题
2017/07/21 Javascript
nodejs 简单实现动态html的方法
2018/05/12 NodeJs
解决vue v-for 遍历循环时key值报错的问题
2018/09/06 Javascript
利用jqgrid实现上移下移单元格功能
2018/11/07 Javascript
javascript json对象小技巧之键名作为变量用法分析
2019/11/11 Javascript
JavaScript交换两个变量方法实例
2019/11/25 Javascript
Antd中单个DatePicker限定时间输入范围操作
2020/10/29 Javascript
一起来了解一下JavaScript的预编译(小结)
2021/03/01 Javascript
Python进阶-函数默认参数(详解)
2017/05/18 Python
python写入并获取剪切板内容的实例
2018/05/31 Python
Python机器学习之scikit-learn库中KNN算法的封装与使用方法
2018/12/14 Python
python的re模块使用方法详解
2019/07/26 Python
解决Python使用列表副本的问题
2019/12/19 Python
Python实现画图软件功能方法详解
2020/07/28 Python
Python JSON常用编解码方法代码实例
2020/09/05 Python
快速一键生成Python爬虫请求头
2021/03/04 Python
大学学习生活感言
2014/01/18 职场文书
中秋节礼品促销方案
2014/02/02 职场文书
企业年会主持词
2014/03/27 职场文书
学校清洁工岗位职责
2015/04/15 职场文书
中国古代史学名著《战国策》概述
2019/08/09 职场文书
position:sticky 粘性定位的几种巧妙应用详解
2021/04/24 HTML / CSS
对象析构函数__del__在Python中何时使用
2022/03/22 Python
Python作用域和名称空间的详细介绍
2022/04/13 Python
MySQL数据库查询之多表查询总结
2022/08/05 MySQL