spring 示例
在這里,我們將學(xué)習(xí)創(chuàng)建第一個(gè)spring應(yīng)用程序的簡(jiǎn)單步驟。要運(yùn)行此應(yīng)用程序,我們不使用任何ide。我們只是在使用命令提示符。讓我們看看創(chuàng)建spring應(yīng)用程序的簡(jiǎn)單步驟:
- 創(chuàng)建java類
- 創(chuàng)建xml文件以提供值
- 創(chuàng)建測(cè)試類
- 加載spring jar文件
- 運(yùn)行測(cè)試類
創(chuàng)建spring應(yīng)用程序的步驟
讓我們看一下創(chuàng)建第一個(gè)spring的5個(gè)步驟:
1)創(chuàng)建java類
這是僅包含name屬性的簡(jiǎn)單java bean類。
package com.yapf; public class student { private string name; public string getname() { return name; } public void setname(string name) { this.name = name; } public void displayinfo(){ system.out.println("hello: "+name); } }
這是簡(jiǎn)單的bean類,僅包含一個(gè)帶有其getter和setters方法的屬性名稱。此類包含一個(gè)名為displayinfo()的附加方法,該方法通過問候消息打印學(xué)生姓名。
2)創(chuàng)建xml文件
如果使用myeclipse ide, ,您無需創(chuàng)建xml文件,因?yàn)閙yeclipse可以自己完成此操作。打開applicationcontext.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.0.xsd"> <bean id="studentbean" class="com.yapf.student"> <property name="name" value="vimal jaiswal"></property> </bean> </beans>
bean 元素用于為給定類定義bean。 bean的 property 子元素指定名為name的student類的屬性。屬性元素中指定的值將由ioc容器在student類對(duì)象中設(shè)置。
3)創(chuàng)建測(cè)試類
創(chuàng)建java類,例如測(cè)試。在這里,我們使用beanfactory的getbean()方法從ioc容器中獲取student類的對(duì)象。讓我們看一下測(cè)試類的代碼。
package com.yapf; import org.springframework.beans.factory.beanfactory; import org.springframework.beans.factory.xml.xmlbeanfactory; import org.springframework.core.io.classpathresource; import org.springframework.core.io.resource; public class test { public static void main(string[] args) { resource resource=new classpathresource("applicationcontext.xml"); beanfactory factory=new xmlbeanfactory(resource); student student=(student)factory.getbean("studentbean"); student.displayinfo(); } }
資源對(duì)象表示applicationcontext.xml文件的信息。 resource是接口,而 classpathresource 是reource接口的實(shí)現(xiàn)類。 beanfactory 負(fù)責(zé)返回bean。 xmlbeanfactory 是beanfactory的實(shí)現(xiàn)類。 beanfactory接口中有很多方法。一種方法是 getbean(),該方法返回關(guān)聯(lián)類的對(duì)象。
4)加載spring框架所需的jar文件
運(yùn)行該應(yīng)用程序主要需要三個(gè)jar文件。
- org.springframework.core-3.0.1.release-a
- com.springsource.org.apache.commons.logging-1.1.1
- org.springframework.beans-3.0.1.release-a
為了將來使用,您可以下載spring核心應(yīng)用程序所需的jar文件。
下載spring的核心jar文件
全部下載spring的jar文件,包括core,web,aop,mvc,j2ee,remoting,oxm,jdbc,orm等。
要運(yùn)行此示例,您只需要加載spring core jar文件。
5)運(yùn)行測(cè)試類
現(xiàn)在運(yùn)行test類。您將得到輸出hello: vimal jaiswal。
- JDBC 教程
- JDBC 驅(qū)動(dòng)類型
- JDBC 連接數(shù)據(jù)庫范例
- JDBC 連接數(shù)據(jù)庫步驟
- JDBC Statement, PreparedStatement 和 CallableStatement
- JDBC ResultSet 結(jié)果集
- JDBC Resultset 結(jié)果集范例
- JDBC 事務(wù)保存點(diǎn)范例
- Scala 教程
- Scala 簡(jiǎn)介
- Scala 類和對(duì)象
- Scala 文件 I/O
- Spring 教程
- Spring 模塊
- Spring 依賴注入
- Spring 自動(dòng)裝配
- Spring MVC教程
- Spring MVC表單標(biāo)簽庫
- Spring security