程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> Spring入門一----HelloWorld,----helloworld

Spring入門一----HelloWorld,----helloworld

編輯:JAVA綜合教程

Spring入門一----HelloWorld,----helloworld


知識點:

簡介:

百度百科

 

HelloWorld

項目結構圖:

    

導入Spring支持包:

然後選中所有包,右鍵Build Path à Add to Build Path

編寫bean配置文件:

<?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.xsd">

<!--相當於實例化HelloWorld類-->

<bean id="HelloWorld" class="com.qinb.service.HelloWorld"></bean>

 

</beans>

編寫HelloWorld類:

編寫Test類

public class Test {

    public static void main(String[] args) {

        ApplicationContext ac=new ClassPathXmlApplicationContext("beans.xml");

        HelloWorld helloWorld=(HelloWorld)ac.getBean("helloWorld");

        helloWorld.say();

    }

}

測試:

 

其實這裡的通過在bean中對類進行實例化,然後在需要調用的時候直接調用bean的設置的id就行了,如果不用spring,我們平時在調用一個類的時候,通常采用new的方法來new一個對象,來供我們使用,這樣在比較大的項目中不適合我們項目使用,占內存也耦合度比較高,就相當於我們需要筷子吃飯,在我們要吃飯的時候我們是新做一個筷子出來吃飯好些還是先把筷子做好,在我們吃飯的時候直接拿來就行了?當然是後面的情況吧。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved