中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring數據怎么在Java項目中進行單元配置

發布時間:2020-12-11 13:54:26 來源:億速云 閱讀:184 作者:Leah 欄目:開發技術

本篇文章為大家展示了Spring數據怎么在Java項目中進行單元配置,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

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 id="..." class="...">
  <!-- collaborators and configuration for this bean go here -->
 </bean>

 <bean id="..." 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.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
 <bean id="userService" 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");

上述內容就是Spring數據怎么在Java項目中進行單元配置,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德州市| 平和县| 平谷区| 晋中市| 宿迁市| 深州市| 凤庆县| 林州市| 临江市| 五峰| 奉新县| 左云县| 潼南县| 香河县| 仙桃市| 丹巴县| 喀什市| 车致| 青川县| 大埔县| 灵武市| 偏关县| 张家港市| 浑源县| 娱乐| 湾仔区| 高台县| 太原市| 琼结县| 芦山县| 吴江市| 安泽县| 资阳市| 余姚市| 荥经县| 阿克| 大竹县| 富裕县| 仪陇县| 吴旗县| 开封县|