91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用Spring怎么實現獲取方法的返回值

發布時間:2021-02-19 16:01:45 來源:億速云 閱讀:255 作者:Leah 欄目:編程語言

使用Spring怎么實現獲取方法的返回值?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一 配置文件

<?xml version="1.0" encoding="GBK"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://www.springframework.org/schema/beans"
   xmlns:util="http://www.springframework.org/schema/util"
   xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util-4.0.xsd">
   <!-- 下面配置相當于如下Java代碼:
   JFrame win = new JFrame("我的窗口");
   win.setVisible(true); -->
   <bean id="win" class="javax.swing.JFrame">
      <constructor-arg value="我的窗口" type="java.lang.String"/>
      <property name="visible" value="true"/>
   </bean>
   <!-- 下面配置相當于如下Java代碼:
   JTextArea jta = JTextArea(7, 40); -->
   <bean id="jta" class="javax.swing.JTextArea">
      <constructor-arg value="7" type="int"/>
      <constructor-arg value="40" type="int"/>
   </bean>  
   <!-- 使用MethodInvokingFactoryBean驅動Spring調用普通方法
   下面配置相當于如下Java代碼:
   win.add(new JScrollPane(jta)); -->
   <bean class=
   "org.springframework.beans.factory.config.MethodInvokingFactoryBean">
      <property name="targetObject" ref="win"/>
      <property name="targetMethod" value="add"/>
      <property name="arguments">
        <list>
           <bean class="javax.swing.JScrollPane">
              <constructor-arg ref="jta"/>
           </bean>
        </list>
      </property>
   </bean>
   <!-- 下面配置相當于如下Java代碼:
   JPanel jp = new JPanel(); -->
   <bean id="jp" class="javax.swing.JPanel"/>
   <!-- 使用MethodInvokingFactoryBean驅動Spring調用普通方法
   下面配置相當于如下Java代碼:
   win.add(jp , BorderLayout.SOUTH); -->
   <bean class=
      "org.springframework.beans.factory.config.MethodInvokingFactoryBean">
      <property name="targetObject" ref="win"/>
      <property name="targetMethod" value="add"/>
      <property name="arguments">
        <list>
           <ref bean="jp"/>
           <util:constant static-field="java.awt.BorderLayout.SOUTH"/>
        </list>
      </property>
   </bean>
   <!-- 下面配置相當于如下Java代碼:
   JButton jb1 = new JButton("確定"); -->
   <bean id="jb1" class="javax.swing.JButton">
      <constructor-arg value="確定" type="java.lang.String"/>
   </bean>
   <!-- 使用MethodInvokingFactoryBean驅動Spring調用普通方法
   下面配置相當于如下Java代碼:
   jp.add(jb1); -->
   <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
      <property name="targetObject" ref="jp"/>
      <property name="targetMethod" value="add"/>
      <property name="arguments">
        <list>
           <ref bean="jb1"/>
        </list>
      </property>
   </bean>
   <!-- 下面配置相當于如下Java代碼:
   JButton jb2 = new JButton("取消"); -->
   <bean id="jb2" class="javax.swing.JButton">
      <constructor-arg value="取消" type="java.lang.String"/>
   </bean>
   <!-- 使用MethodInvokingFactoryBean驅動Spring調用普通方法
   下面配置相當于如下Java代碼:
   jp.add(jb2); -->
   <bean class=
      "org.springframework.beans.factory.config.MethodInvokingFactoryBean">
      <property name="targetObject" ref="jp"/>
      <property name="targetMethod" value="add"/>
      <property name="arguments">
        <list>
           <ref bean="jb2"/>
        </list>
      </property>
   </bean>
   <!-- 使用MethodInvokingFactoryBean驅動Spring調用普通方法
   下面配置相當于如下Java代碼:
   win.pack(); -->
   <bean class=
      "org.springframework.beans.factory.config.MethodInvokingFactoryBean">
      <property name="targetObject" ref="win"/>
      <property name="targetMethod" value="pack"/>
   </bean>
</beans>

二 測試類

package lee;
import org.springframework.context.*;
import org.springframework.context.support.*;
import org.crazyit.app.service.*;
public class SpringTest
{
  public static void main(String[] args)
  {
    ApplicationContext ctx =
        new ClassPathXmlApplicationContext("beans.xml");
  }
}

關于使用Spring怎么實現獲取方法的返回值問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

中阳县| 厦门市| 仁化县| 汉沽区| 临湘市| 通海县| 五指山市| 洛川县| 阜宁县| 屏东市| 邵武市| 改则县| 宁波市| 光山县| 威信县| 鄂托克前旗| 沁水县| 密山市| 东山县| 益阳市| 固始县| 通山县| 洪湖市| 莱西市| 尤溪县| 和平区| 佛教| 平谷区| 伊宁市| 西乡县| 昭平县| 宁海县| 榆社县| 广东省| 长子县| 永州市| 伊通| 宁阳县| 额敏县| 大田县| 桑植县|