Tagged Questions
6
votes
3answers
2k views
How do you use stereotype annotations in Spring 2.5.x?
When moving to Spring 2.5.x I found that it adds more stereotype annotations (on top of @Repository from 2.0): @Component, @Service and @Controller. How do you use them? Do you rely on implicit Spring ...
3
votes
1answer
842 views
How can I apply an aspect using annotations in Spring?
Update: I've found the Spring 2.x annotation-based Controllers are horrible for AOP security because you can't make assumptions about the method prototype due to the increased freedom in params and ...
2
votes
1answer
307 views
Use Spring @Transactional in Scala
We have a mixed Java and Scala project, which uses Spring transaction management. We are using the Spring aspects to weave the files with @Transactional annotated methods.
The problem is, that the ...
2
votes
1answer
315 views
Spring AOP injecting PortletRequest
I'm trying to inject a portletrequest in my aspect class
@Autowired(required = true)
private PortletRequest request;
@Before("execution(* de.ac.mis.dao.*.getSessionFactory())")
public void ...
1
vote
1answer
541 views
Interceptors vs aspect in spring?
am trying to use interceptors in spring, i want to implement an interceptor on some methods, to handle specific logic when these methods called, i want also to be apart from using web framework, as am ...
-2
votes
0answers
21 views
junit4osgi with aspects issue
I have bundle with test case and running in osgi environment with equinox and aspects enabled ,i am facing an issue with 'loadtimeweaver' even after using the java agent.Please let me know what causes ...