码迷,mamicode.com
首页 > 编程语言 > 详细

Spring 框架的环境搭建

时间:2017-02-18 09:28:43      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:之间   nts   rda   维护   sch   context   1.0   src   路径   

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 框架的环境搭建

标签:之间   nts   rda   维护   sch   context   1.0   src   路径   

原文地址:http://www.cnblogs.com/lsw520s/p/6412140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!