spring入门

Posted 执笔coding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring入门相关的知识,希望对你有一定的参考价值。

一、引言

Spring框架是由于软件开发的复杂性而创建的。Spring使用的是基本的JavaBean来完成以前只可能由EJB完成的事情。然而,Spring的用途不仅仅限于服务器端的开发。从简单性、可测试性和松耦合性角度而言,绝大部分Java应用都可以从Spring中受益。
 
◆目的:解决企业应用开发的复杂性
 
◆功能:使用基本的JavaBean代替EJB,并提供了更多的企业应用功能
 
◆范围:任何Java应用
 
Spring是一个开源框架,它由Rod Johnson创建。它是为了解决企业应用开发的复杂性而创建的。Spring使用基本的JavaBean来完成以前只可能由EJB完成的事情。然而,Spring的用途不仅限于服务器端的开发。从简单性、可测试性和松耦合的角度而言,任何Java应用都可以从Spring中受益。
 
Spring是一个轻量级控制反转(IoC)和面向切面(AOP)的容器框架。
 

二、基础环境搭建

2.1 spring基于xml的ioc环境搭建

<?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
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="accountDao" class="dao.impl.AccountDaoImpl"></bean>

</beans>

测试方法

获取ApplicationContext对象的三种方式

//从文件系统获取,填写在硬盘上的绝对路径
FileSystemXmlApplicationContext("bean.xml");

AnnotationConfigApplicationContext("");
ClassPathXmlApplicationContext("bean.xml");
public static void main(String[] args) {
        //读取配置文件
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");
        //根据配置的id获取指定对象
        AccountDao accountDao = applicationContext.getBean("accountDao",AccountDao.class);
        //测试方法
        accountDao.saveAccount();
    }

 

 

 
 

以上是关于spring入门的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

Spring boot:thymeleaf 没有正确渲染片段

What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

Spring Rest 文档。片段生成时 UTF-8 中间字节无效 [重复]

Atom编辑器入门到精通 Atom使用进阶