Spring 框架的环境搭建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 框架的环境搭建相关的知识,希望对你有一定的参考价值。
Spring 的环境搭建
Spring 现在流行的SSH框架之一,主要用于解决主业务之间的耦合度问题 Spring主要负责应用中对对象的创建,初始化,销毁,关系维护,降低代码耦合
主要提供了两个降低耦合度的方式:
IOC(控制反转)
主业务在相互调用的过程中不再需要自行创建对象,由spring自动注入
AOP(面向切面编程)
Spring 容器统一完成系统级服务,降低了系统级服务与主服务
配置框架第一步
下载Spring Jar包
官网: http://spring.io/
软件仓库: http://repo.spring.io http://search.maven.org/
配置框架第二步
创建项目导入项目所需要的基础包
配置框架第三步
编写简单的接口和实现类
Public interface hello{ Void hello(); } Public class helloWrod implements hello{ Public void hello(){ System.out.println(“hello Spring”); } }
配置框架第四步
配置applicationContext.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"> <!-- id="自定义命名" classs="实现类的路径" --> <bean id="managerService" class="demo1.UserDaoImp" /> <bean class="BeanCL.MyBeanPostPro" /> </beans>
配置框架第五步
public void test2(){ ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml"); IManagerService ism = (IManagerService)ac.getBean("managerService"); ism.hello(); }
以上是关于Spring 框架的环境搭建的主要内容,如果未能解决你的问题,请参考以下文章
Spring1:Spring简介环境搭建源码下载及导入MyEclipse
Spring4- 01 - Spring框架简介及官方压缩包目录介绍- Spring IoC 的概念 - Spring hello world环境搭建