zoukankan      html  css  js  c++  java
  • Spring_Bean 的作用域

    beans-scope.xml

    <?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 的scope属性来配置bean的作用域
    singleton:默认值。容器初始化时创建bean实例,在整个容器的生命周期内只创建这一个bean.单例。
    prototype:原型的。容器初始化时不创建bean的实例。而在每次请求时都创建一个新的bean实例,并返回。
    -->
    <bean id="car" class="com.hy.spring.beans.autowire.Car" scope="prototype">
    <property name="brand" value="AuDi"></property>
    <property name="price" value="300000"></property>
    </bean>

    </beans>

    Main.java

    package com.hy.spring.beans.scope;

    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;

    import com.hy.spring.beans.autowire.Car;

    public class Main {

    public static void main(String[] args) {
    ApplicationContext ctx = new ClassPathXmlApplicationContext("beans-scope.xml");
    Car car = (Car) ctx.getBean("car");
    Car car2 = (Car) ctx.getBean("car");
    System.out.println(car == car2);
    }

    }

  • 相关阅读:
    PHP 中的 cURL 爬虫实战基础
    PHP的输出缓冲区
    Web网站高并发量的解决方案
    PHP Socket 简单使用
    php无极限分类函数
    PHP单链表的基本操作
    PHP中的10个实用函数
    你真的了解现在的PHP吗?
    国人骄傲,layer.js 搞定所有弹窗
    字典排序
  • 原文地址:https://www.cnblogs.com/yang-hao/p/5797132.html
Copyright © 2011-2022 走看看