zoukankan      html  css  js  c++  java
  • spring 通过JavaConfig完成spring.xml文件的功能

    第一步:编写接口

    HelloWorld.java

    package com.xuzhiwen.spring3;
    
    public interface HelloWorld {
        public abstract void printHelloWorld(String msg);
    }

    第二步:编写实现类

    package com.xuzhiwen.spring3;
    
    public class HelloWorldImpl implements HelloWorld{
    
        @Override
        public void printHelloWorld(String msg) {
            System.out.println("hello: " + msg);
        }
    }

    第三步:编写javaconfig 配置等效的Java

    AppConfig.java

    package com.xuzhiwen.spring3;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    @Configuration
    public class AppConfig {
        
        @Bean(name="hellowrold")
        public HelloWorld getHelloWorld(){
            return new HelloWorldImpl();
        }
    }

    该文件等效于:

    <bean id="helloworld" class="com.xuzhiwen.spring2.HelloWorldImpl" />

    第四步:编写测试类

    package com.xuzhiwen.spring3;
    
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    
    public class TestHelloWorld {
        public static void main(String[] args) {
            ApplicationContext app = new AnnotationConfigApplicationContext(AppConfig.class);
            HelloWorld helloworld = (HelloWorld) app.getBean("hellowrold");
            helloworld.printHelloWorld("good boy");
        }
    }

    第五步:运行结果如下

    文件结构如下:

  • 相关阅读:
    centos 编程环境
    git 安装 使用
    nodejs 笔记
    微信开发
    composer 使用笔记
    一:安装centos 7最小编程环境 xfce桌面
    二: 安装centos服务环境软件mysql httpd php
    我的通用程序规范及说明
    常用js代码集
    三 , lnmp 一键包安装使用
  • 原文地址:https://www.cnblogs.com/beibidewomen/p/7383020.html
Copyright © 2011-2022 走看看