源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Java Spring快速入门

  • 时间:2020-08-15 18:45 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Java Spring快速入门
[b]一、Spring是什么?[/b] [list] [*]Spring是一个开源框架,[/*] [*]Spring为简化企业级应用开发而生,使用Spring可以使简单的JavaBean实现以前只有EJB才能实现的功能。[/*] [*]Spring是一个IOC(DI)和AOP容器框架。[/*] [/list] [b]二、具体描述Spring[/b] [list] [*]轻量级:Spring是非侵入式的-基于Spring开发的应用中的对象可以不依赖Spring的API[/*] [*]依赖注入:(DI-Dependency injection、IOC)[/*] [*]面向切面编程:(AOP-aspect oriented programming)[/*] [*]容器:Spring是一个容器,因为它包含并且管理应用对象的生命周期[/*] [*]框架:Spring实现了使用简单的组件配置组合成一个复杂的应用,在Spring中可以使用XML和java注解组合这些对象[/*] [*]一站式:在IOC和AOP的基础上可以整合各种企业应用的开源框架和优秀的第三方类库(实际上Spring自身也提供了展现层的SpringMVC和持久层的Spring JDBC)[/*] [/list] [b]三、搭建Spring环境[/b] [b]1. eclipse安装Spring Tool Suite[/b]   SPRING TOOL SUITE 是一个 Eclipse 插件,利用该插件可以更方便的在 Eclipse 平台上开发基于 Spring 的应用。 [b]2. 加包[/b] 把以下的jar包加入到工程的classpath: [img]http://files.jb51.net/file_images/article/201701/201701210906002.png[/img] [b]3. Spring的配置文件:一个典型的Spring项目需要创建一个或多个Bean配置文件,这些配置文件用于在Spring IOC容器中配置Bean。Bean的配置文件可以放在classpath下,也可以放在其他目录下。[/b] [b]4. 建立Spring项目,编写HelloWorld:[/b]
package com.atguigu.spring.beans;
public class HelloWorld {
  private String name;
  public void setName(String name) {
    System.out.println("setName...");
    this.name = name;
  }
  public void hello(){
    System.out.println("Hello " + name);
  }
  public HelloWorld() {
    System.out.println("HelloWorld's construct...");
  }
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
  xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans             http://www.springframework.org/schema/beans/spring-beans.xsd         http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
  <bean id="helloworld" class="com.atguigu.spring.beans.HelloWorld">
    <property name="name" value="spring"></property>
  </bean>
</beans>
package com.atguigu.spring.beans;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Main {
  public static void main(String[] args) {
    /*
    HelloWorld helloWorld = new HelloWorld();
    helloWorld.setName("spring");
    helloWorld.hello();
    */
    //1.创建容器
    ApplicationContext ctx = new   ClassPathXmlApplicationContext("appliactionContext.xml");
    //2.从容器中获取bean
    HelloWorld hello = (HelloWorld) ctx.getBean("helloworld");
    //3.调用bean的方法
    hello.hello();
  }
}
[b]5.测试结果[/b] [img]http://files.jb51.net/file_images/article/201701/201701210906003.png[/img] 以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持编程素材网!
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部