前一篇博客講述了Spring的一些基礎概念,下麵我們來創建第一個Spring程式吧。 步驟如下: 1) 導包 2) 配置文件 附沒有提示的情況 MyEclipse ->File and Editors -XML ->XML Catlog, 點擊 add,找到上面的文件 spring-beans-3. ...
前一篇博客講述了Spring的一些基礎概念,下麵我們來創建第一個Spring程式吧。
步驟如下:
1) 導包
2) 配置文件
附沒有提示的情況
MyEclipse ->File and Editors -XML ->XML Catlog, 點擊 add,找到上面的文件 spring-beans-3.1.xsd,然後 Key type 選 SchemaLoaction, key 後面加上 spring-beans-3.1.xsd即可。
//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" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> //這裡自己根據需要去設置,將UserInf這個類交給Spring管理 <bean name="userInfo_name" class="cat.beans.UserInfo" > <property name="id" value="1" /> <property name="userName" value="趙明明" /> <property name="password" value="123" /> <property name="note" value="這是備註" /> </bean> </beans>
public class Test { public static void main(String[] args) { //初始化容器 ClassPathXmlApplicationContext ctx=new ClassPathXmlApplicationContext("beans.xml"); UserInfo user=(UserInfo) ctx.getBean("userInfo_name");//下麵講解兩種等效方法 /*可以這樣,條件是在beans.xml中只有一個userInfo_name的情況下。 *多了,就不能用這個了,因此推出可以用下麵帶參數的方法 *UserInfo user=ctx.getBean(UserInfo.class); */ //帶參數的方法 //UserInfo user=ctx.getBean("userInfo_name", UserInfo.class); System.out.println(user); /*附加:初始化容器,也可以這樣寫 *ApplicationContext ctx= new ClassPathXmlApplicationContext("beans.xml"); *因為 ApplicationContext 是 ClassPathXmlApplicationContext的父類 */ } }