spring学習の創建プロジェクトHello Spring実例コード


本論文の研究は主にspring学習の創建プロジェクトHello Springの実例コードであり、具体的には以下の通りである。
一、eclipseプロジェクトを作成し、jarパッケージを導入する。
1、eclipse作成java projectプロジェクトHello Spring
2、libディレクトリを作成し、springに必要な5つのjarパッケージを追加する。
3、5つのファイルを選択してください。右キー->Build Path->add to build path
二、springのhello springコードを作成する
1、包io.spring.beansを作成し、ハローワールド.javaを作成する。

package io.spring.beans;
/** 
 * @author   のALEX E-mail:[email protected] 
 * @version 1.0 
*/
public class HelloWorld {
	private String name;
	public void setName(String name) {
		this.name = name;
	}
	public void hello() {
		System.out.println("hello " + name);
	}
}
2、src右ボタン->spring bean configrationファイルを作成するappration Controtext.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" 
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> 
   
  <!--   bean --> 
  <bean id="helloWorld" class="io.spring.beans.HelloWorld"> 
    <property name="name" value="  "></property> 
  </bean> 
 
</beans> 
3、Main.javaを作成する

package io.spring.beans;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/** 
 * @author   のALEX E-mail:[email protected] 
 * @version 1.0 
*/
public class Main {
	public static void main(String[] args) {
		//1、  Spring IOC     
		ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
		//2、 IOC     Bean   
		HelloWorld helloWorld = (HelloWorld) ctx.getBean("helloWorld");
		//3、  hello   
		helloWorld.hello();
	}
}
出力結果
consone内で赤いspringログを印刷すると、springアプリケーションが成功したことを表します。
締め括りをつける
以上が本文のspring学習の創建プロジェクトHello Springの実例コードの全部です。興味のある方は引き続き当駅の他のテーマを参照してください。友達のサポートに感謝します。