久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

Java Spring數據單元配置過程解析

瀏覽:2日期:2022-08-19 15:08:26

基本原理 - 容器和bean

在Spring中,那些組成你應用程序的主體(backbone)及由Spring IoC容器所管理的對象,被稱之為bean。 簡單地講,bean就是由Spring容器初始化、裝配及管理的對象,除此之外,bean就與應用程序中的其他對象沒有什么區別了。

也就是說,其實spring 就是在加載配置文件beans.xml的時候,通過反射機制,去實例化<bean>標簽里面的類的過程。這里可以通過在類的默認無參構造方法中寫點東西判斷出來。

1. 配置元數據

基于XML的配置元數據的基本結構:beans.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-2.5.xsd'> <bean class='...'> <!-- collaborators and configuration for this bean go here --> </bean> <bean class='...'> <!-- collaborators and configuration for this bean go here --> </bean> <!-- 更多的bean的時候 在引用的xml文件一定是要帶spring dtd頭的文件--> <import resource='services.xml'/></beans>

services.xml

在配置文件里面命名其實id 和name都是一樣的

<?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' xmlns:tx='http://www.springframework.org/schema/tx' xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsdhttp://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd'> <bean name='userService' class='com.sun.service.UserService'><property name='name'> <value>sunxin</value></property></bean></beans>

2. 實例化容器

ApplicationContext context = new ClassPathXmlApplicationContext(new String[] {'beans.xml'});

3. bean的別名

<!--name指向的是已經存在該id的bean,alias是給給該bean命的別名--><alias name='userService' alias='user'/>

調用可以通過:

UserService us = (UserService) app.getBean('user');

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Java
相關文章:
主站蜘蛛池模板: 中方县| 昌吉市| 宁德市| 泰州市| 衡阳县| 尉氏县| 将乐县| 顺平县| 迭部县| 册亨县| 浦江县| 广河县| 安顺市| 阿鲁科尔沁旗| 依安县| 牟定县| 兴仁县| 屏东县| 鸡东县| 始兴县| 威信县| 河北区| 锦州市| 镇江市| 安图县| 尚义县| 秦安县| 巴林左旗| 鄂尔多斯市| 波密县| 武穴市| 岑溪市| 三门县| 南涧| 醴陵市| 磴口县| 遵义市| 抚顺县| 汨罗市| 体育| 韶关市|