Issue Details (XML | Word | Printable)

Key: SJC-175
Type: New Feature New Feature
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Chris Beams
Reporter: Chris Beams
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Spring JavaConfig

@AspectJAutoProxy - support equivalent to <aop:aspectj-autoproxy/>

Created: 27/Aug/08 11:58 PM   Updated: 23/Sep/08 01:06 PM   Resolved: 23/Sep/08 01:06 PM
Component/s: AOP, Plugins, Public API
Affects Version/s: None
Fix Version/s: 1.0.0.M4

Time Tracking:
Not Specified

File Attachments: 1. Zip Archive mylyn-context.zip (110 kB)
2. Zip Archive mylyn-context.zip (66 kB)

Issue Links:
Depends
 
Supersede
 


Chris Beams added a comment - 27/Aug/08 11:59 PM
This feature is required in order to implement an SJC petclinic sample that is 1:1 with Core Spring's

Chris Beams added a comment - 04/Sep/08 02:44 PM
Now functional:

@Configuration
@AspectJAutoProxy
public class Config {
    public @Bean TestBean testBean() {
        return new TestBean("name");
    }
    public @Bean AnAspect aspectBean() {
        return new AnAspect;
    }
}

@Aspect
public class AnAspect { ... }


Also functional:

@AspectJAutoProxy(proxyTestClass=true)

Chris Beams added a comment - 04/Sep/08 04:01 PM
@AspectJAutoProxy(include="...") now supported.

Aspect ordering also supported.

See AspectJAutoProxyTests for details.