`
happyqing
  • 浏览: 3198031 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

spring4.x组件扫描component-scan所有过滤stereotype

阅读更多

在spring-framework-4.2.6.RELEASE-dist\spring-framework-4.2.6.RELEASE\libs\org\springframework\stereotype

下有这4个类

<context:component-scan base-package="com.urthink.*">
	<!-- 
	<context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/>
	<context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
	<context:include-filter type="annotation" expression="org.springframework.stereotype.Component"/>
	 -->
	<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

 

分享到:
评论

相关推荐

    基于注解的Spring_3.0.x_MVC

    基于注解的 Spring 3.0.x MVC 基于注解的 Spring 3.0.x MVC 是指在 Spring 3.0.x 中使用基于注解的方式来配置和实现 MVC 模式的应用程序。这种方式不同于传统的 XML 配置文件方式,而是使用 Java 注解来标注 Bean ...

    spring_MVC源码

    -- 自动扫描所有注解该路径 --&gt; 14. 15. &lt;context:property-placeholder location="classpath:/hibernate.properties" /&gt; 16. 17. 18. class="org.springframework.orm.hibernate3.annotation....

    Spring AOP配置源码

    import org.springframework.stereotype.Component; @Component("userDAO") public class UserDao { public void say() { System.out.println("say method is called"); } public void smile() { System.out...

    SpringMVC.pptx

    import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.spring...

    Spring注解详解

    4. AspectJ 表达式过滤:使用 AspectJ 表达式来过滤某些类。 例如,使用正则表达式过滤某些类: ```xml &lt;context:component-scan base-package="com.example"&gt; &lt;context:exclude-filter type="regex" expression=...

    Developing a Spring Framework MVC application step-by-step

    4. **配置servlet-context.xml**:在`/WEB-INF/spring/appServlet/servlet-context.xml`中,设置Spring MVC的组件扫描和视图解析器。 ```xml &lt;context:component-scan base-package="com.example.myapp" /&gt; ...

    spring mvc

    当在Spring配置文件中加入`&lt;context:component-scan base-package="leot.test"/&gt;`,Spring会扫描指定包(本例中为"leot.test")及其子包下的所有类,查找带有上述注解的类,并将其注册为Spring管理的Bean。...

    springMVC.doc

    - `&lt;context:component-scan&gt;` 指定包扫描范围,找到带有 @Controller 注解的类。 例如: ```xml &lt;context:component-scan base-package="com.example.web.controllers" /&gt; &lt;mvc:annotation-driven /&gt; &lt;!-- ...

    SPring注解及页面跳转实例

    - 使用`&lt;context:component-scan&gt;`标签扫描控制器所在的包。 - 配置`InternalResourceViewResolver`用于解析视图。 ```xml &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi=...

    集成springmvc spring hibernate的配置

    在开发Java Web应用程序时,常常会采用Spring MVC、Spring和Hibernate这三大框架进行集成,以实现高效的业务逻辑处理和持久化操作。以下是关于这些框架集成的详细配置过程: 首先,我们需要创建一个项目结构,通常...

    基于注解的Spring MVC+Hibernate简单入门

    import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/users") public ...

    spring-framework-reference-4.1.2

    What’s New in Spring Framework 4.x .................................................................................... 16 3. New Features and Enhancements in Spring Framework 4.0 .....................

    基于java的企业级应用开发:Spring MVC的核心类和注解.ppt

    在Spring MVC配置文件中,需要添加`&lt;context:component-scan&gt;`元素来指定需要扫描的包,这样Spring才能找到所有的控制器类。如: ```xml &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi...

    Maven 搭建Spring + SpringMVC.rar

    import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class ...

    spring5.0_mvc_maven项目_HelloWorld实例

    首先,让我们了解Spring MVC的核心组件: 1. **DispatcherServlet**:它是Spring MVC的前端控制器,负责接收HTTP请求,根据配置的映射规则分发请求给相应的处理器。 2. **Controller**:控制器是业务逻辑处理的...

    springmvc开发webservice接口.docx

    import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public ...

    Spring MVC--2.入门程序

    import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.GetMapping; @Controller public class HelloController { @...

    基于框架的Web开发-装配Bean自动装配.doc

    Spring通过组件扫描(Component Scanning)和自动装配(Autowiring)来实现这一目标,使得开发者无需手动配置大部分bean的依赖关系。 首先,我们来看组件扫描。组件扫描允许Spring容器自动发现应用上下文中创建的...

Global site tag (gtag.js) - Google Analytics