context « MVC Controller « Spring Q&A





1. What's the purpose of when applied to a Spring MVC controller package configuration?    stackoverflow.com

<context:exclude-filter type="aspectj" expression="com.myapp.controller.*"/>
What's the purpose of the line above in the applicationContext.xml file below which is used to configure a Spring MVC web app?
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   ...

2.  not picking up my @RequestMappings if handler mappings defined in XML    stackoverflow.com

I'm using Spring 3.0.5 with <context:component-scan> and @RequestMapping annotations on my controllers. This works, and URLs are registered by the package scan. But there is a problem when I have a ...

3. Spring @Controllers declared in the root application context    stackoverflow.com

Spring web applications have two context - the web context (child) and the root context (parent). If @Controller beans are defined in dispatcher-servlet.xml (the web context) everything is fine. But if ...

4. Approach for advising domain objects by controller context (pure AspectJ)    forum.springsource.org

Using AspectJ 1.5.x Spring MVC Java 1.5 I'm using AspectJ to advise my domain objects to provide some security features when I'm rendering a view. The following pointcut allows me to ...

5. Controller not found by context:component-scan    forum.springsource.org

Controller not found by context:component-scan Hi! Im using spring 3.0.3. For me it seems that even though i specify the following in the app-servlet.xml: My java class in that ...