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 相关文章推荐
HashMap实现保存两个key相同的数据
Jun 30 Java/Android
分析ZooKeeper分布式锁的实现
Jun 30 Java/Android
新手初学Java网络编程
Jul 07 Java/Android
Java 实现限流器处理Rest接口请求详解流程
Nov 02 Java/Android
Java字符串逆序方法详情
Mar 21 Java/Android
springboot应用服务启动事件的监听实现
Apr 06 Java/Android
Java详细解析==和equals的区别
Apr 07 Java/Android
Java数组详细介绍及相关工具类
Apr 14 Java/Android
Java Spring Boot 正确读取配置文件中的属性的值
Apr 20 Java/Android
mybatis-plus模糊查询指定字段
Apr 28 Java/Android
Java存储没有重复元素的数组
Apr 29 Java/Android
volatile保证可见性及重排序方法
Aug 05 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中冒号、endif、endwhile、endfor使用介绍
2010/04/28 PHP
php的一个简单加密解密代码
2014/01/14 PHP
php5.2以下版本无json_decode函数的解决方法
2014/05/25 PHP
PHP MPDF中文乱码的解决方式
2015/12/08 PHP
Laravel SQL语句记录方式(推荐)
2016/05/26 PHP
laravel框架select2多选插件初始化默认选中项操作示例
2020/02/18 PHP
jQuery 源代码显示控件 (Ajax加载方式).
2009/05/18 Javascript
Jquery Select操作方法集合脚本之家特别版
2010/05/17 Javascript
JS二维数组的定义说明
2014/03/03 Javascript
javascript实现密码强度显示
2015/03/18 Javascript
jQuery ajax时间差导致的变量赋值问题分析
2016/01/22 Javascript
JavaScript实现的MD5算法完整实例
2016/02/02 Javascript
Jquery Easyui验证组件ValidateBox使用详解(20)
2016/12/18 Javascript
js实现无缝滚动图
2017/02/22 Javascript
[03:49]2016完美“圣”典风云人物:AMS专访
2016/12/06 DOTA
[10:54]Team Spirit vs Navi
2018/06/07 DOTA
[02:49:21]2019完美盛典全程录像
2019/12/08 DOTA
Python中关键字is与==的区别简述
2014/07/31 Python
Python利用pyHook实现监听用户鼠标与键盘事件
2014/08/21 Python
python通过正则查找微博@(at)用户的方法
2015/03/13 Python
使用Python实现在Windows下安装Django
2018/10/17 Python
Python操作mongodb数据库的方法详解
2018/12/08 Python
Python测试模块doctest使用解析
2019/08/10 Python
Python基于read(size)方法读取超大文件
2020/03/12 Python
德国自然时尚和有机产品购物网站:Waschbär
2019/05/29 全球购物
应届毕业生简历自我评价
2014/01/31 职场文书
《广玉兰》教学反思
2014/04/14 职场文书
公司节能减排方案
2014/05/16 职场文书
涉密人员保密承诺书
2014/05/28 职场文书
市场策划求职信
2014/08/07 职场文书
2014年家长学校工作总结
2014/11/20 职场文书
个人工作违纪检讨书
2015/05/05 职场文书
《吃水不忘挖井人》教学反思
2016/02/22 职场文书
优秀家长事迹材料(2016推荐版)
2016/02/29 职场文书
go xorm框架的使用
2021/05/22 Golang
2022年四月新番
2022/03/15 日漫