亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

比如县| 永福县| 镇安县| 台东县| 平陆县| 元谋县| 福安市| 开阳县| 洪洞县| 攀枝花市| 特克斯县| 柘荣县| 旌德县| 济阳县| 昭苏县| 唐山市| 北辰区| 延寿县| 邯郸市| 武乡县| 图木舒克市| 南宫市| 花莲市| 合阳县| 蓬安县| 汝城县| 天津市| 横山县| 邓州市| 页游| 宣汉县| 鸡东县| 玛多县| 巴中市| 绿春县| 麟游县| 建湖县| 望谟县| 乐亭县| 孝义市| 江门市|