烂笔头-Spring3

Posted 学习是不让自己瞎想的最好方式

tags:

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

1.spring相关jar包的导入

2.配置文件bean.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"
     xmlns:context="http://www.springframework.org/schema/context"
     xsi:schemaLocation="http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context-3.0.xsd">

   <context:annotation-config/>
  <context:component-scan base-package="org.example"/>
</beans>

3.spring相关注解:注解就是为了减少配置文件中配置项

@Component:标准一个普通的spring Bean类
@Controller:标注一个控制器组件类
@Service:标注一个业务逻辑组件类
@Repository:标注一个DAO组件类
 
Bean实例的名称默认是Bean类的首字母小写,其他部分不变(当然也可以自己重新命名)。
 
@Resource位于java.annotation包下,来自于java EE规范的一个annotation。使用该annotation为目标bean指定协作者Bean。
public class SimpleMovieLister {

  private MovieFinder movieFinder;

  @Resource
  public void setMovieFinder(MovieFinder movieFinder) {
      this.movieFinder = movieFinder;
  }
}
 AOP:面向切面编程
 
 

以上是关于烂笔头-Spring3的主要内容,如果未能解决你的问题,请参考以下文章

好记性不如烂笔头

Spring3.0入门笔记

好记性不如烂笔头

好记性不如烂笔头

烂笔头git常用命令篇

第16课:生活中的备忘模式——好记性不如烂笔头