zoukankan      html  css  js  c++  java
  • Hello spring

    步骤:导入相关jar包(记得选中jar包,右键build path)   

          commons-logging-1.2.jar
          spring-aop-4.1.6.RELEASE.jar
          spring-aspects-4.1.6.RELEASE.jar
          spring-beans-4.1.6.RELEASE.jar
          spring-context-4.1.6.RELEASE.jar
          spring-context-support-4.1.6.RELEASE.jar
          spring-core-4.1.6.RELEASE.jar
          spring-expression-4.1.6.RELEASE.jar
          spring-instrument-4.1.6.RELEASE.jar
          spring-jdbc-4.1.6.RELEASE.jar
          spring-orm-4.1.6.RELEASE.jar
          spring-test-4.1.6.RELEASE.jar
          spring-tx-4.1.6.RELEASE.jar
          spring-web-4.1.6.RELEASE.jar
          spring-webmvc-4.1.6.RELEASE.jar

             编写spring配置文件(名称可以自定义)

    (废话少说-----:)

    Hello.java

    package com.yikuan.cn;

    public class Hello {
    private String name;
    public void setName(String name) {
    this.name = name;
    }
    public void show(){
    System.out.println("hello,"+name);
    }
    }

    beans.xml

    <?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.xsd">
    <!-- bean就是java对象,由spring容器来创建和管理 -->
    <bean name="hello" class="com.yikuan.cn.Hello">
    <property name="name" value="张三"/>
    </bean>
    </beans>

    Test1.java

    package com.yikuan.cn.test;

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

    import com.yikuan.cn.Hello;

    public class Test1 {
    public static void main(String[] args) {
    //解析beans.xml文件,生成管理相应的bean对象
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    Hello hello = (Hello) context.getBean("hello");
    hello.show();
    }
    }

  • 相关阅读:
    java 手写 jvm高性能缓存
    给大家推荐一款非常好用的表单验证插件:lr-verify.js
    如何设计处优秀的Restful API
    volatile、static
    微服务学习(一):微服务介绍
    spark过滤算子+StringIndexer算子出发的一个逻辑bug
    spark和深度学习集成调研
    收藏一个不错的个人博客
    二分法中的逼近法
    netty服务端启动--ServerBootstrap源码解析
  • 原文地址:https://www.cnblogs.com/yikuan-919/p/9501469.html
Copyright © 2011-2022 走看看