Java Spring快速入门

网友投稿 222 2023-06-16


Java Spring快速入门

一、Spring是什么?

Spring是一个开源框架,

Spring为简化企业级应用开发而生,使用Spring可以使简单的javaBean实现以前只有EJB才能实现的功能。

Spring是一个IOC(DI)和AOP容器框架。

二、具体描述Spring

轻量级:Spring是非侵入式的-基于Spring开发的应用中的对象可以不依赖Spring的API

依赖注入:(DI-Dependency injection、IOC)

面向切面编程:(AOP-aspect oriented programming)

容器:Spring是一个容器,因为它包含并且管理应用对象的生命周bfQYIJAfe期

框架:Spring实现了使用简单的组件配置组合成一个复杂的应用,在Spring中可以使用XML和java注解组合这些对象

一站式:在IOC和AOP的基础上可以整合各种企业应用的开源框架和优秀的第三方类库(实际上Spring自身也提供了展bfQYIJAfe现层的SpringMVC和持久层的Spring JDBC)

三、搭建Spring环境

1. eclipse安装Spring Tool Suite

SPRING TOOL SUITE 是一个 Eclipse 插件,利用该插件可以更方便的在 Eclipse 平台上开发基于 Spring 的应用。

2. 加包

把以下的jar包加入到工程的classpath:

3. Spring的配置文件:一个典型的Spring项目需要创建一个或多个Bean配置文件,这些配置文件用于在Spring IOC容器中配置Bean。Bean的配置文件可以放在classpath下,也可以放在其他目录下。

4. 建立Spring项目,编写HelloWorld:

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...");

}

}

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xmlns:util="http://springframework.org/schema/util"

xmlns:p="http://springframework.org/schema/p"

xsi:schemaLocation="http://springframework.org/schema/beans            http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/util http://springframework.org/schema/util/spring-util-4.0.xsd">

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xmlns:util="http://springframework.org/schema/util"

xmlns:p="http://springframework.org/schema/p"

xsi:schemaLocation="http://springframework.org/schema/beans            http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/util http://springframework.org/schema/util/spring-util-4.0.xsd">

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();

}

}

5.测试结果


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:JAVA实现遍历文件夹下的所有文件(递归调用和非递归调用)
下一篇:微信小程序 数据交互与渲染实例详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~