今天写了个SSH2的小程序,因为程序小,包名就直接用了org.*。
1.<context:component-scan base-package="org.*"/>导致内存溢出
beans.xml中使用 <context:component-scan base-package="org.*"/>进行自动扫描。
结果程序启动时在加载beans.xml时停顿一会,就报了
org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [beans.xml]; nested exception is java.lang.OutOfMemoryError: Java heap space
最后将包名换了,不让直接扫描org.*下的包了。
2.<context:component-scan/>的作用
我的理解就是,Spring 会自动去扫描base-package 属性中指定包中的类,查找里面的annoatation。
分享到:
相关推荐
在Spring框架中,`<context:component-scan/>`元素是核心组件扫描的基石,它允许我们自动检测和注册...在实际项目中,结合使用`@Component`家族注解和`<context:component-scan/>`,能够构建出高效、灵活的Spring应用。
然而,在配置过程中,如果遇到“元素 'context:component-scan' 的前缀 'context' 未绑定”的错误,这意味着Spring无法识别和解析这个元素,因为缺少了对应的命名空间定义。 这个问题的根源在于XML配置文件中没有...
* 简化配置:使用<context:component-scan/>标签可以自动检测和加载 Bean,无需手动配置 XML 文件。 * 提高开发效率:使用<context:component-scan/>标签可以减少代码量和提高开发效率。 * 增强灵活性:使用<context...
方式三:使用 `<context:component-scan />` 命名空间注册注解处理器: ```xml <context:component-scan base-package="com.example"/> ``` 这将扫描指定的类包和其递归子包中的所有类,并将其注册到 Spring 容器中...
<context:component-scan base-package="Mode"></context:component-scan> //表示在包mode下面的类将扫描带有@Component,@Controller,@Service,@Repository标识符的类并为之注入对象。 据说是因为XML配置太烦锁而...
在这个主题中,我们将深入探讨`<context:annotation-config>`与`<context:component-scan>`的区别,事务管理器的配置,以及Spring开发环境的选择和数据源的配置。 1. `<context:annotation-config>`和`<context:...
- **排除特定类**:使用`<context:exclude-filter>`来排除不需要的类。 - **懒加载**:通过`lazy-init="true"`属性可以控制Bean的初始化时机。 - **条件化扫描**:结合`@Conditional`注解,根据运行时环境条件决定...
本文将深入探讨Spring 3.0中依赖注入的新特性,特别是如何使用`@Repository`、`@Service`、`@Controller`和`@Component`注解来标记类为Bean,以及如何利用`<context:component-scan/>`元素自动扫描和注册这些Bean。...
本文将深入探讨Spring框架的Context模块以及4.2版本的XSD配置,旨在帮助开发者更好地理解和使用这一核心功能。 Spring Context模块是Spring框架的核心部分,它提供了一个统一的接口来管理应用对象,包括bean的创建...
nested exception is java.lang.IllegalStateException: Context namespace element 'component-scan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are ...
本文旨在深入探讨Spring框架中基于注解的依赖注入机制,特别是`@Repository`、`@Service`、`@Controller`和`@Component`等核心注解的使用方法,以及如何利用`<context:component-scan>`自动扫描功能,实现类级别的...
在本节中,我们将探讨 SSM 框架中 XML 配置的使用,特别是事务配置和 `<context:component-scan>` 的使用。 一、事务配置 在 SSM 框架中,事务配置是非常重要的,用于确保数据的一致性和安全性。在 XML 配置文件中...
5. **事务管理器配置**:使用`@Transactional`注解进行声明式事务管理,配置事务管理器`txManager`: ```xml <tx:annotation-driven transaction-manager="txManager" /> <bean id="txManager" class="org.spring...
在上面的配置文件中,我们使用了 `<context:annotation-config/>` 和 `<context:component-scan>` 两个元素。`<context:annotation-config/>` 元素用于激活注解驱动的 Bean, `<context:component-scan>` 元素用于...
在上面的配置文件中,我们使用了 `<context:annotation-config/>` 和 `<context:component-scan base-package="testspring.main"/>` 两个标签。 `<context:annotation-config/>` 用于启用注释型的 IOC,而 `<context...
- **组件扫描**:使用`<context:component-scan>`标签来指定要扫描的包路径,从而自动发现和注册带有`@Component`、`@Service`、`@Repository`、`@Controller`等注解的类。 - **示例**: ```xml <context:...
"component-scan-spring"项目很显然是一个示例,用于演示如何在Spring应用中使用组件扫描。下面将详细阐述组件扫描的工作原理、优势以及如何在实际开发中应用。 **组件扫描的概念** 组件扫描(Component Scanning)...
这个文件包含了所有在Spring MVC 4.2版本中可以使用的XML配置元素和属性,例如`<mvc:annotation-driven>`、`<bean>`、`<context:component-scan>`等。这些配置元素允许开发者声明式地配置控制器、视图解析器、转换...