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是一个容器,因为它包含并且管理应用对象的生命周期
- 框架:Spring实现了使用简单的组件配置组合成一个复杂的应用,在Spring中可以使用XML和java注解组合这些对象
- 一站式:在IOC和AOP的基础上可以整合各种企业应用的开源框架和优秀的第三方类库(实际上Spring自身也提供了展现层的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..."); } }
<?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(); } }
5.测试结果
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!
- Java Spring Controller 获取请求参数的几种方法详解
- Java SpringMVC实现PC端网页微信扫码支付(完整版)
- Java Spring 事务回滚详解
- Java Spring MVC 上传下载文件配置及controller方法详解
- C程序函数调用&系统调用
- 从最基本的Java工程搭建SpringMVC+SpringDataJPA+Hibernate
- 实例讲解Java的Spring框架中的AOP实现
- 详解Java Spring各种依赖注入注解的区别
- 在Java的Spring框架中配置Quartz的教程
- Java类获取Spring中bean的5种方式
- 详解Java的Spring框架中的事务管理方式
相关文章
使用SpringBoot与EasyExcel实现复杂的导入导出
这篇文章主要介绍了使用SpringBoot与EasyExcel实现复杂的导入导出,EasyExcel是一个快速解决大文件内存溢出的Excel处理工具,它能让你在不用考虑性能、内存等因素的情况下,快速完成Excel的读、写等功能,需要的朋友可以参考下2023-10-10SpringBoot使用GraphQL开发Web API实现方案示例讲解
这篇文章主要介绍了SpringBoot使用GraphQL开发Web API实现方案,GraphQL是一个从服务端检数据的查询语言。某种程度上,是REST、SOAP、或者gRPC的替代品2023-04-04
最新评论