`
kavian
  • 浏览: 10075 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

FirstSpring

阅读更多

新建一个interface文件:IHello 并放在first文件中

下载: IHello.java
  1. package first;
  2.  
  3. public interface IHello {
  4.     public String sayHello(String user);
  5. }


再在同一个文件夹中建一个class文件Hello

下载: Hello.java
  1. package first;
  2.  
  3. public class Hello implements IHello {
  4.  
  5.     @Override
  6.     public String sayHello(String user) {
  7.         return "Hello: " + user;
  8.     }
  9.  
  10. }

建一个测试文件java

下载: Test.java
  1. import org.springframework.beans.factory.xml.XmlBeanFactory;
  2. import org.springframework.core.io.ClassPathResource;
  3.  
  4. import first.IHello;
  5.  
  6. public class test {
  7.     public static void main(String arg[]) {
  8.         // 指定配置文件路径
  9.         ClassPathResource resource = new ClassPathResource(
  10.                 "applicationContext.xml");
  11.         XmlBeanFactory factory = new XmlBeanFactory(resource);
  12.         //得到配置文件中的Bean
  13.         IHello hello = (IHello)factory.getBean("hello");
  14.         String result = hello.sayHello("kavian");
  15.         System.out.println(result);
  16.     }
  17. }

原整版本:

 http://www.kavian.com.cn/?p=25

分享到:
评论

相关推荐

    SpringBoot学习笔记 - First Spring Boot Application - 代码Demo

    Getting Started Guides(0):First Spring Boot Application https://blog.csdn.net/leo_luck/article/details/121767974

    first spring boot

    "first spring boot" 是一个关于初次接触和使用Spring Boot的项目。Spring Boot是Spring框架的一个扩展,它旨在简化创建独立的、生产级别的基于Spring的应用程序。这个项目可能是一个基础的入门教程,帮助开发者快速...

    first Spring test

    1.实现特定功能的方面代码在aop中又称为“通知(Advice)”包含 前置通知 后置通知 环绕...2.spring 采用代理的方式将通知织入到原bean中,将原bean和通知都封装到--org.springframework.aop.framework.ProxyFactory.

    Apress Beginning Spring Boot 2 PDF

    After reading and learning with Beginning Spring Boot 2, you'll have the skills and techniques to start building your first Spring Boot applications and microservices with confidence to take the next ...

    一个spring的helloword例子加源码

    在这个"一个spring的helloworld例子加源码"中,我们将深入理解Spring框架的基础,以及如何通过实际的"firstspring"项目来启动一个简单的应用。 首先,让我们了解一下Spring框架的核心概念。Spring的主要目标是简化...

    Beginning Spring Boot 2 (mobi for Kindle, English version)

    After reading and learning with Beginning Spring Boot 2, you'll have the skills and techniques to start building your first Spring Boot applications and microservices with confidence to take the next ...

    Beginning Spring Boot 2 (epub, mobi, pdf, source code)

    After reading and learning with Beginning Spring Boot 2, you'll have the skills and techniques to start building your first Spring Boot applications and microservices with confidence to take the next ...

    Spring Recipes A Problem-Solution Approach [英文原版]

    One of the first (if not the first) books on the latest Spring 3.x, and the first Spring code Recipes book focused on Spring Web-tier development The Spring framework is growing. It has always been ...

    spring-boot-reference.pdf

    “Developing Your First Spring Boot Application”部分是一个非常实用的教程,它指导开发者一步步创建一个简单的Spring Boot应用,包括如何创建POM文件、添加类路径依赖、编写代码,并最终运行这个应用程序。...

    spring boot 1.3.5 release

    - **开发第一个Spring Boot应用**(Developing your first Spring Boot application): - 创建POM文件(Creating the POM):介绍如何创建项目的构建配置文件。 - 添加类路径依赖(Adding classpath dependencies...

    spring小例

    在`handleRequest`方法中,我们返回一个`ModelAndView`对象,它包含了要显示的JSP页面("main.jsp")以及一个模型数据("message"),在这里设置为"first spring test!"。 接下来,我们创建了一个名为`main.jsp`的...

    spring依赖注入

    Spring依赖注入是Java开发中的核心概念,特别是在使用Spring框架时,它是实现松耦合和可测试性的重要机制...在资源"firstspring"中,很可能是对Spring框架入门学习的资料,涵盖了如何在实践中运用依赖注入的基本知识。

    OIM Spring Boot_share.ppt

    Spring Boot 入门 以及微服务的简单介绍,spring boot 打包部署 等简单... First Spring boot demo project Part 4. Muliple model Part 5. Package and runing Part 6. OIM Simplification Restful API

    微服务系列第七十一季-Introducing Spring Boot

    3-Developing Your First Spring Boot Application  -Creating the POM 4-Developing Your First Spring Boot Application  -Adding Classpath Dependencies 5-Writing the Code 6-Running the Example 7-Creating...

    Spring.Boot.in.Action.2015.12.pdf

    Developing your first Spring Boot application 23 2.1 Putting spring boot to work 24 Examining a newly initialized spring boot project 26 Dissecting Bc iect build 30 2.2 USing starter dependencies 33 ...

    spring boot first application源码学习

    **Spring Boot 源码学习指南** 在Spring Boot的世界里,构建第一个应用程序是学习的关键步骤。Spring Boot以其简化Spring框架的初始化和配置而受到广泛欢迎,使得开发人员能够快速搭建可运行的应用。在这个教程中,...

Global site tag (gtag.js) - Google Analytics