📜  Eclipse中的Spring示例

📅  最后修改于: 2020-12-04 06:02:35             🧑  作者: Mango

在Eclipse IDE中创建Spring应用程序

在这里,我们将使用eclipse IDE创建一个spring框架的简单应用程序。让我们看一下在Eclipse IDE中创建spring应用程序的简单步骤。

  • 创建Java项目
  • 添加spring jar文件
  • 创建课程
  • 创建xml文件以提供值
  • 创建测试类

在Eclipse IDE中创建Spring应用程序的步骤

让我们看一下使用eclipse IDE创建第一个spring应用程序的5个步骤。

1)创建Java项目

转到文件菜单-项目-Java项目。写下项目名称,例如firstspring- Finish 。现在,创建了Java项目。

2)添加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文件,包括aop,mvc,j2ee,remoting,oxm等。

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

要在eclipse IDE中加载jar文件,请右键单击您的项目构建路径添加外部档案选择所有必需的jar文件完成。

3)创建Java类

在这种情况下,我们只是在创建Student类的具有name属性。学生的姓名将由xml文件提供。这只是一个简单的示例,而不是spring的实际使用。我们将在“依赖注入”一章中看到实际的用法。要创建Java类,在SRC右键新建写的类名称,如学生完成。编写以下代码:

package com.javatpoint;

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类,仅包含一个带有其getters和setters方法的属性名。此类包含一个名为displayInfo()的附加方法,该方法通过hello消息打印学生姓名。

4)创建xml文件

要创建xml文件,请单击src-new-file-给出文件名,例如applicationContext.xml-finish。打开applicationContext.xml文件,并编写以下代码:









bean元素用于为给定类定义bean。 bean的属性子元素指定了名为name的Student类的属性。属性元素中指定的值将由IOC容器在Student类对象中设置。

5)创建测试类

创建Java类,例如Test。在这里,我们使用BeanFactory的getBean()方法从IOC容器中获取Student类的对象。让我们看一下测试类的代码。

package com.javatpoint;

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

现在运行此类。您将获得输出Hello:Vimal Jaiswal。