1. 程式人生 > >通過eclipse新建spring項目

通過eclipse新建spring項目

ava .get ase eclipse 3.0 通過 turn rgs 函數

一:準本工作(下載需要的jar包)

1.下載準備Spring-framework-4.2.0

  鏈接為:

  http://repo.springsource.org/libs-release-local/org/springframework/spring/

  截圖:

  技術分享

2.具體的spring-framework4.2.0

  技術分享

3.下載log

  鏈接為:

  http://commons.apache.org/proper/commons-logging/download_logging.cgi

  截圖:

  技術分享

二:建項目

1.新建普通的java項目

  技術分享

2.新建lib文件夾,並將jar包復制粘貼進去

  技術分享

3.將lib包進行buid path

  技術分享

  然後將需要的jar從firstSpring中導入

  技術分享

  然後reply和ok

  技術分享

4.這時的效果

  技術分享

5.新建包

  類包:

  技術分享

  XML包

  技術分享

6.新建類

  第一個接口

1 package main.java.com.sommer.learn;
2 
3 public interface HelloWorld {
4     public String sayHi(); 
5 }

  實現類

1 package main.java.com.sommer.learn;
2 
3 public class
HelloWorldImpl implements HelloWorld{ 4 @Override 5 public String sayHi() { 6 return "hahahahahha"; 7 } 8 9 }

7.新建xml文件

1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans
3      xmlns="http://www.springframework.org/schema/beans"   
4        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
5
xsi:schemaLocation="http://www.springframework.org/schema/beans 6 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 7 8 <bean id="helloWorld" class="main.java.com.sommer.learn.HelloWorldImpl"></bean> 9 </beans>

8.新建主函數

 1 package main.java.com.sommer.learn;
 2 import org.springframework.context.ApplicationContext;
 3 import org.springframework.context.support.ClassPathXmlApplicationContext;
 4 
 5 public class Main {
 6     public static void main(String[] args) {  
 7         ApplicationContext apc = new ClassPathXmlApplicationContext("springXML/HelloWorld.xml");  
 8         HelloWorld hello = apc.getBean("helloWorld",HelloWorld.class);  
 9         System.out.println(hello.sayHi());  
10     }  
11 }

9.運行

  技術分享

  

通過eclipse新建spring項目