`
erichua
  • 浏览: 516420 次
  • 性别: Icon_minigender_2
  • 来自: 远方
社区版块
存档分类
最新评论

Spring总结-----@Component,@Service,@Controller,@Repository

阅读更多

在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不太方便。Spring2.5为我们引入了组件自动扫描机制,他可以在类路径底下寻找标注了@Component,@Service,@Controller,@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件时一样的。要使用自动扫描机制,我们需要打开以下配置信息: 

<?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-2.5.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-2.5.xsd"
>

<context:component-scan base-package=”com.eric.spring”> 
</beans> 
其中base-package为需要扫描的包(含所有子包) @Service用于标注业务层组件,@Controller用于标注控制层组件(如struts中的action),@Repository用于标注数据访问组件,即DAO组件,而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。 
@Service public class VentorServiceImpl implements iVentorService { 
} @Repository public class VentorDaoImpl implements iVentorDao {
} getBean的默认名称是类名(头字母小写),如果想自定义,可以@Service(“aaaaa”)这样来指定,这种bean默认是单例的,如果想改变,可以使用@Service(“beanName”) @Scope(“prototype”)来改变。可以使用以下方式指定初始化方法和销毁方法(方法名任意): @PostConstruct public void init() {
}
@PreDestroy public void destory() {
}
 
10
0
分享到:
评论
3 楼 wenjinglian 2010-10-10  
2 楼 erichua 2009-10-23  
原来是用code包含起来的,不知道为什么上传后就变了。
而且回车也被去掉了。
myali88 写道
文章代码用标注一下,方便看了。
<?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-2.5.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-2.5.xsd"
>

1 楼 myali88 2009-10-20  
文章代码用标注一下,方便看了。
<?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-2.5.xsd   http://www.springframework.org/schema/context   http://www.springframework.org/schema/context/spring-context-2.5.xsd"
>

相关推荐

    Spring注解@Component、@Repository、@Service、@Controller区别.doc

    Spring 注解@Component、@Repository、@Service、@Controller 区别 在 Spring 框架中,@Component、@Repository、@Service、@Controller 是四个常用的注解,它们都是继承自 @Component 注解,用于标注不同的组件或 ...

    解释@Component @Controller @Service @Repository

    本篇文章将深入探讨四个关键的注解:`@Component`、`@Controller`、`@Service`和`@Repository`,它们是Spring框架中的核心注解,用于定义不同层次的组件。 首先,`@Component`注解是最基础的,它代表了一个通用的...

    Spring注解 @Component、@Repository、@Service、@Controller区别

    ### Spring注解 @Component、@Repository、@Service、@Controller 的区别 #### 一、引言 在现代软件开发中,尤其是Java领域的企业级应用开发中,Spring框架因其灵活、强大的依赖注入(DI)和面向切面编程(AOP)...

    Spring注解 - 52注解 - 原稿笔记

    在火狐中显示可能会有问题,大家都是... @RequestMapping , @RequestParam , @Resource , @ResponseBody , @RestController , @Scope , @Service , @Validated , @Value , @WebFilter , @WebInitParam , @WebListener

    Spring扫描器—spring组件扫描使用详解

    它会遍历指定包及其子包下的所有类,寻找带有特定注解(如@Service、@Component、@Repository、@Controller等)的类,并将这些类实例化为Spring容器中的bean。通过这种方式,我们可以避免手动编写大量的XML配置,...

    spring02-5

    例如,如果你在主配置类上使用`@ComponentScan("com.myapp")`,Spring会查找所有在这个包及其子包下的带有`@Component`、`@Repository`、`@Service`和`@Controller`注解的类。 2. `@Component`注解:这是Spring的...

    spring-mvc-4.2.xsd.zip

    而`&lt;context:component-scan&gt;`则用于扫描指定包下的所有类,自动发现带有`@Component`、`@Service`、`@Repository`和`@Controller`等注解的bean。 `spring-mvc-4.2.xsd.txt`可能是该xsd文件的文本格式,方便开发者...

    Spring--2.Spring 中的 Bean 配置-4

    `Spring--2.Spring 中的 Bean 配置-4-2.zip`文件可能包含了使用注解的例子,如`@Component`、`@Service`、`@Repository`和`@Controller`这些组件扫描的注解,以及`@Autowired`、`@Value`等用于属性注入的注解。...

    Spring Boot技术知识点:如何深入理解@Component注解

    在Spring Boot中,通过`@SpringBootApplication`注解,Spring会默认进行组件扫描,寻找类路径下标记了`@Component`、`@Service`、`@Repository`和`@Controller`的类。这些注解都是`@Component`的特殊形式,分别对应...

    Spring3.0.2-API.zip

    例如,@Autowired注解用于自动装配依赖,@Component、@Service、@Repository和@Controller等注解用于标记不同类型的bean。此外,@RequestMapping注解用于处理HTTP请求映射,@ResponseBody用于将方法返回值直接写入...

    spring注解 -----最简单的注解与自动装配例子

    首先,我们要了解Spring的核心注解,包括@Component、@Service、@Repository和@Controller。这些注解被用来标记不同层次的Java类,方便Spring容器管理。例如,@Component是所有注解的基础,通常用于标记普通的业务...

    Spring注释 注入方式源码示例,Annotation

    凡带有@Component,@Controller,@Service,@Repository 标志的等于告诉Spring这类将自动产生对象,而@Resource则等于XML配置中的ref,告诉spring此处需要注入对象,所以用@Resource就有了ref的功效。 要用注解注入方式...

    Spring @讲义.txt

    ### Spring 注解详解:@Component、@Repository、@Service、@Controller 区别 #### 一、Spring 注解概述 Spring 框架是 Java 开发领域中非常流行的一个轻量级框架,它通过依赖注入(DI)和面向切面编程(AOP)等...

    spring-framework-2.0.6-with-dependencies.zip

    在Spring 2.0.6中,可以通过XML配置文件定义Bean及其依赖关系,也可以使用注解进行配置,如@Component、@Service、@Repository和@Controller。此外,Spring的自动扫描功能可以自动发现并管理带有特定注解的类。 五...

    spring-framework-3.0.6.RELEASE-with-docs.zip

    例如,@Component、@Service、@Repository和@Controller等注解用于标记bean,而@Autowired则自动装配依赖。 二、AOP(Aspect-Oriented Programming) Spring的AOP(面向切面编程)模块提供了声明式事务管理、日志...

    spring-framework-3.2.5.RELEASE.rar

    例如,通过`@Component`、`@Service`、`@Repository`和`@Controller`注解声明bean,然后通过`@Autowired`自动装配依赖。 7. **最佳实践** 在实际项目中,为了充分利用Spring的优势,开发者应遵循一些最佳实践,如...

    spring-framework-4.3.7.RELEASE官方完整包加官方文档

    7. **注解驱动的开发**:Spring 4.3.x 版本强化了注解的支持,如 `@Component`、`@Service`、`@Repository` 和 `@Controller`,它们简化了组件扫描和依赖注入的过程。 8. **Spring Expression Language (SpEL)**:...

    intellij-spring-assistant-0.11.0.zip

    例如,当开发者在代码中声明一个Bean时,插件会自动推荐相关的Spring注解,如`@Component`、`@Service`、`@Repository`和`@Controller`。同时,对于依赖注入(DI)的字段,它能提供类的自动导入,使得编码过程更为...

    spring-framework-2.5.5

    在Spring 2.5.5中,注解驱动的开发(Annotation-driven development)已经变得非常流行,比如使用`@Autowired`、`@Component`、`@Service`、`@Repository`和`@Controller`等注解,简化了组件扫描和自动装配的过程。...

    Spring--2.Spring 中的 Bean 配置-1

    我们可以在类或方法上使用注解,如`@Component`、`@Service`、`@Repository`和`@Controller`,声明一个类为Spring Bean。同时,`@Autowired`注解可以实现依赖注入,而`@Value`用于注入属性值。 ```java @Service ...

Global site tag (gtag.js) - Google Analytics