spring框架

Posted pompeiipbb

tags:

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

web程序分层架构

浏览器发送请求--web层(controllor)--调用service层--调用数据访问层(dao)--data

自动装配之----

定义组件

  • @Component  spring 识别对象
  • @Autowired自动注入;@Autowired(required=false)

定义装配歧义性

  • @Qualifier("userServicenormal") 或者@primary: 同名类指定。

定义配置

  • 设置组件扫描的基础包:@ComponentScan("包名") 也可以用xml文件扫描。 
  • @Configuration 表示这个文件是配置文件

分层架构定义组件

  • @Controller
  • @Service
  • @Repository

spring测试环境

  • @RunWith
  • @ContextConfiguration

xml装配之----

注入方法:构造函数依赖注入<constructor-arg>元素;c-空间。

                   属性注入:property;p-名称空间。

                    复杂数据结构的表示方法:set,map,list...

 

 

 

      

 

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

自己写的框架怎么融入到spring

spring框架优点

Spring框架学习教程,spring框架最全面的原理解析

Spring框架入门

spring框架有啥用?

Spring框架--Spring事务管理和Spring事务传播行为