日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring学习(50):延迟加载

發布時間:2023/12/10 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring学习(50):延迟加载 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

目錄結構

pom.xml

<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.geyao</groupId><artifactId>spring01geyao</artifactId><version>1.0-SNAPSHOT</version><dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>4.3.13.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>3.2.0.RELEASE</version></dependency><dependency><groupId>log4j</groupId><artifactId>log4j</artifactId><version>1.2.17</version></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>4.3.4.RELEASE</version><scope>test</scope></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-test</artifactId><version>4.3.4.RELEASE</version><scope>test</scope></dependency></dependencies> </project>

log4j.properties

### 設置### log4j.rootLogger = ERROR,stdout### 輸出信息到控制抬 ### log4j.appender.stdout = org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout = org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern = [%-5p] %d{yyyy-MM-dd HH:mm:ss,SSS} method:%l%n%m%n log4j.category.org.springframework.beans.factory=ERROR

applicationContext.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"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 http://www.springframework.org/schema/context/spring-context.xsd"><!--bean元素:描述當前的對象需要由spring容器管理id屬性:標識對象 未來在應用程序中可以根據id獲取對象class對象:被管理的對象的全名--><context:component-scan base-package="com.geyao.demo"></context:component-scan><bean id="notepad" class="com.geyao.demo.NotePad" scope="singleton" lazy-init="true"/> </beans>

notepad類

package com.geyao.demo;public class NotePad {public NotePad() {super();System.out.println("NotePad的構造函數"+this.toString());} }

notepad2類

package com.geyao.demo;import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component;@Component //@Scope("prototype") //@Scope(scopeName = "prototype") @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) public class Notepad2 {public Notepad2() {super();System.out.println("NotePad的構造函數"+this.toString());}}

notepad3類

package com.geyao.demo;import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component;public class Notepad3 {public Notepad3() {super();System.out.println("NotePad的構造函數"+this.toString());}}

Appconfig類

package com.geyao.demo;import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Scope;@Configuration public class Appconfig {@Bean@Scopepublic Notepad3 notepad3(){return new Notepad3();} }

Notepadtest類

package com.geyao.demo;import org.junit.Test; import org.springframework.context.support.ClassPathXmlApplicationContext; //無論我們是否去主動獲取對象,spring上下文剛加載就會創建對象 //無論獲取多少次,都是統一對象 // public class NotepadTest {@Testpublic void test01(){ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");NotePad notePad1= (NotePad)context.getBean("notepad");NotePad notePad2= (NotePad)context.getBean("notepad");System.out.println(notePad1=notePad2);} }

notepadtestAuto類

package com.geyao.demo;import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration("classpath:applicationContext.xml") public class NotePadTestAuto {@Autowiredprivate NotePad notePad1;@Autowiredprivate NotePad notePad2;@Testpublic void test01(){System.out.println(notePad1==notePad2);} }

notepadtestt類

package com.geyao.demo;import org.springframework.beans.factory.config.ConfigurableBeanFactory; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Component;@Component //@Scope("prototype") //@Scope(scopeName = "prototype") @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE) public class Notepad2 {public Notepad2() {super();System.out.println("NotePad的構造函數"+this.toString());}}

notepad3test類

package com.geyao.demo;import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes=Appconfig.class) public class Notepad3Test {@Autowiredprivate Notepad3 notePad1;@Autowiredprivate Notepad3 notePad2;@Testpublic void test01(){System.out.println(notePad1==notePad2);} }

運行結果

NotePad的構造函數com.geyao.demo.Notepad3@3e2059ae NotePad的構造函數com.geyao.demo.Notepad2@4397ad89 NotePad的構造函數com.geyao.demo.Notepad2@768fc0f2 false

?

總結

以上是生活随笔為你收集整理的spring学习(50):延迟加载的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。