精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Spring 示例

spring 示例

 

在這里,我們將學習創建第一個spring應用程序的簡單步驟。要運行此應用程序,我們不使用任何ide。我們只是在使用命令提示符。讓我們看看創建spring應用程序的簡單步驟:

  • 創建java類
  • 創建xml文件以提供值
  • 創建測試類
  • 加載spring jar文件
  • 運行測試類

 

創建spring應用程序的步驟

讓我們看一下創建第一個spring的5個步驟:

1)創建java類

這是僅包含name屬性的簡單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);
}
}

這是簡單的bean類,僅包含一個帶有其getter和setters方法的屬性名稱。此類包含一個名為displayinfo()的附加方法,該方法通過問候消息打印學生姓名。

 

2)創建xml文件

如果使用myeclipse ide, ,您無需創建xml文件,因為myeclipse可以自己完成此操作。打開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類對象中設置。

 

3)創建測試類

創建java類,例如測試。在這里,我們使用beanfactory的getbean()方法從ioc容器中獲取student類的對象。讓我們看一下測試類的代碼。

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();
}
}

資源對象表示applicationcontext.xml文件的信息。 resource是接口,而 classpathresource 是reource接口的實現類。 beanfactory 負責返回bean。 xmlbeanfactory 是beanfactory的實現類。 beanfactory接口中有很多方法。一種方法是 getbean(),該方法返回關聯類的對象。

 

4)加載spring框架所需的jar文件

運行該應用程序主要需要三個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核心應用程序所需的jar文件。

下載spring的核心jar文件

全部下載spring的jar文件,包括core,web,aop,mvc,j2ee,remoting,oxm,jdbc,orm等。

要運行此示例,您只需要加載spring core jar文件。

 

5)運行測試類

現在運行test類。您將得到輸出hello: vimal jaiswal。

spring application

下一節:spring 創建應用

spring 教程

相關文章