Spring - Hello World 示例



让我们开始使用 Spring 框架进行实际编程。在开始使用 Spring 框架编写第一个示例之前,您必须确保已正确设置了 Spring 环境,如Spring - 环境搭建章节中所述。我们还假设您对 Eclipse IDE 有一定的使用经验。

现在让我们继续编写一个简单的 Spring 应用程序,该应用程序将根据 Spring Bean 配置文件中完成的配置打印“Hello World!”或任何其他消息。

步骤 1 - 创建 Java 项目

第一步是使用 Eclipse IDE 创建一个简单的 Java 项目。按照以下选项文件 → 新建 → 项目,最后从向导列表中选择Java 项目向导。现在使用向导窗口将您的项目命名为HelloSpring,如下所示:

Hello Spring Wizard

项目成功创建后,您的项目资源管理器中将包含以下内容:

Hello Spring Directories

步骤 2 - 添加所需的库

第二步,让我们在项目中添加 Spring 框架和通用日志记录 API 库。为此,右键单击您的项目名称HelloSpring,然后按照上下文菜单中提供的以下选项:构建路径 → 配置构建路径,以显示如下所示的 Java 构建路径窗口:

Java Build Path

现在使用选项卡下提供的添加外部 JAR按钮,从 Spring 框架和通用日志记录安装目录中添加以下核心 JAR:

  • commons-logging-1.1.1

  • spring-aop-4.1.6.RELEASE

  • spring-aspects-4.1.6.RELEASE

  • spring-beans-4.1.6.RELEASE

  • spring-context-4.1.6.RELEASE

  • spring-context-support-4.1.6.RELEASE

  • spring-core-4.1.6.RELEASE

  • spring-expression-4.1.6.RELEASE

  • spring-instrument-4.1.6.RELEASE

  • spring-instrument-tomcat-4.1.6.RELEASE

  • spring-jdbc-4.1.6.RELEASE

  • spring-jms-4.1.6.RELEASE

  • spring-messaging-4.1.6.RELEASE

  • spring-orm-4.1.6.RELEASE

  • spring-oxm-4.1.6.RELEASE

  • spring-test-4.1.6.RELEASE

  • spring-tx-4.1.6.RELEASE

  • spring-web-4.1.6.RELEASE

  • spring-webmvc-4.1.6.RELEASE

  • spring-webmvc-portlet-4.1.6.RELEASE

  • spring-websocket-4.1.6.RELEASE

步骤 3 - 创建源文件

现在让我们在HelloSpring项目下创建实际的源文件。首先,我们需要创建一个名为com.tutorialspoint的包。为此,右键单击包资源管理器部分中的src,然后按照以下选项:新建 → 包

接下来,我们将在com.tutorialspoint包下创建HelloWorld.javaMainApp.java文件。

Spring Source Files

以下是HelloWorld.java文件的内容:

package com.tutorialspoint;

public class HelloWorld {
   private String message;

   public void setMessage(String message){
      this.message  = message;
   }
   public void getMessage(){
      System.out.println("Your Message : " + message);
   }
}

以下是第二个文件MainApp.java的内容:

package com.tutorialspoint;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
      HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
      obj.getMessage();
   }
}

关于主程序需要注意以下两点:

  • 第一步是创建一个应用程序上下文,我们在其中使用了框架 API ClassPathXmlApplicationContext()。此 API 加载 Bean 配置文件,并最终根据提供的 API,它负责创建和初始化配置文件中提到的所有对象,即 Bean。

  • 第二步是使用已创建上下文的getBean()方法获取所需的 Bean。此方法使用 Bean ID 返回一个通用对象,该对象最终可以转换为实际对象。获得对象后,您可以使用此对象调用任何类方法。

步骤 4 - 创建 Bean 配置文件

您需要创建一个 Bean 配置文件,该文件是一个 XML 文件,充当将 Bean(即类)粘合在一起的水泥。此文件需要在src目录下创建,如下面的屏幕截图所示:

Beans Configuration File

通常,开发人员将此文件命名为Beans.xml,但您可以随意选择任何名称。您必须确保此文件位于 CLASSPATH 中,并在创建应用程序上下文时在主应用程序中使用相同的名称,如 MainApp.java 文件中所示。

Beans.xml 用于为不同的 Bean 分配唯一的 ID,并控制对象的不同值的创建,而不会影响任何 Spring 源文件。例如,使用以下文件,您可以为“message”变量传递任何值,并且您可以打印不同的消息值,而不会影响 HelloWorld.java 和 MainApp.java 文件。让我们看看它是如何工作的:

<?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-3.0.xsd">

   <bean id = "helloWorld" class = "com.tutorialspoint.HelloWorld">
      <property name = "message" value = "Hello World!"/>
   </bean>

</beans>

当 Spring 应用程序加载到内存中时,框架利用上述配置文件创建所有定义的 Bean,并为其分配在<bean>标签中定义的唯一 ID。您可以使用<property>标签在对象创建时传递不同变量的值。

步骤 5 - 运行程序

完成源文件和 Bean 配置文件的创建后,您就可以进行此步骤,即编译和运行您的程序。为此,请保持 MainApp.Java 文件选项卡处于活动状态,并使用 Eclipse IDE 中提供的运行选项或使用Ctrl + F11编译并运行您的MainApp应用程序。如果应用程序一切正常,这将在 Eclipse IDE 的控制台中打印以下消息:

Your Message : Hello World!

恭喜,您已成功创建了第一个 Spring 应用程序。您可以通过更改“message”属性的值并保持两个源文件不变来查看上述 Spring 应用程序的灵活性。

广告