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 相关文章推荐
Spring Cache和EhCache实现缓存管理方式
Jun 15 Java/Android
一篇带你入门Java垃圾回收器
Jun 16 Java/Android
解决tk mapper 通用mapper的bug问题
Jun 16 Java/Android
Spring boot应用启动后首次访问很慢的解决方案
Jun 23 Java/Android
在Spring-Boot中如何使用@Value注解注入集合类
Aug 02 Java/Android
Java后台生成图片的完整步骤
Aug 04 Java/Android
Java数据开发辅助工具Docker与普通程序使用方法
Sep 15 Java/Android
Mybatis是这样防止sql注入的
Dec 06 Java/Android
java代码实现空间切割
Jan 18 Java/Android
深入浅出讲解Java8函数式编程
Jan 18 Java/Android
Spring Data JPA框架持久化存储数据到数据库
Apr 28 Java/Android
Spring Cloud OAuth2实现自定义token返回格式
Jun 25 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
如何让搜索引擎抓取AJAX内容解决方案
2014/08/25 PHP
PHP更安全的密码加密机制Bcrypt详解
2017/06/18 PHP
由document.body和document.documentElement想到的
2009/04/13 Javascript
Egret引擎开发指南之发布项目
2014/09/03 Javascript
JS实现的自定义显示加载等待图片插件(loading.gif)
2016/06/17 Javascript
JS实现微信弹出搜索框 多条件查询功能
2016/12/13 Javascript
详解百度百科目录导航树小插件
2017/01/08 Javascript
jquery获取链接地址和跳转详解(推荐)
2017/08/15 jQuery
基于node.js实现微信支付退款功能
2017/12/19 Javascript
jQuery实现图片上传预览效果功能完整实例【测试可用】
2018/05/28 jQuery
vue组件实现可搜索下拉框扩展
2020/10/23 Javascript
layui结合form,table的全选、反选v1.0示例讲解
2018/08/15 Javascript
npx create-react-app xxx创建项目报错的解决办法
2020/02/17 Javascript
Element-UI 使用el-row 分栏布局的教程
2020/10/26 Javascript
js实现头像上传并且可预览提交
2020/12/25 Javascript
python实现爬虫统计学校BBS男女比例之多线程爬虫(二)
2015/12/31 Python
Python常用的爬虫技巧总结
2016/03/28 Python
使用python 爬虫抓站的一些技巧总结
2018/01/10 Python
Python GUI Tkinter简单实现个性签名设计
2018/06/19 Python
python实现手机销售管理系统
2019/03/19 Python
wxPython+Matplotlib绘制折线图表
2019/11/19 Python
Python warning警告出现的原因及忽略方法
2020/01/31 Python
Python smtp邮件发送模块用法教程
2020/06/15 Python
什么是Python包的循环导入
2020/09/08 Python
Python识别验证码的实现示例
2020/09/30 Python
用html5的canvas和JavaScript创建一个绘图程序的简单实例
2016/07/06 HTML / CSS
Booking.com美国:全球酒店预订网站
2017/04/18 全球购物
Asics日本官网:鬼冢八喜郎创立的跑鞋运动品牌
2017/10/18 全球购物
印尼极简主义和实惠的在线家具店:Fabelio
2019/03/27 全球购物
巴西电子、家电、智能手机购物网站:Girafa
2019/06/04 全球购物
便利店促销方案
2014/02/20 职场文书
党员教师群众路线思想汇报范文
2014/10/28 职场文书
英语教师个人工作总结
2015/02/09 职场文书
mysql获取指定时间段中所有日期或月份的语句(不设存储过程,不加表)
2021/06/18 MySQL
JavaScript数组reduce()方法的语法与实例解析
2021/07/07 Javascript
windows10 家庭版下FTP服务器搭建教程
2022/08/05 Servers