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 ...
4
votes
3answers
793 views
Using annotations for trace logging
I've been working with a codebase of a company that has a policy of writing lots of trace logging. So pretty much every method has a piece of code that starts like this:
String LOG_METHOD = ...
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 ...
0
votes
1answer
213 views
Spring AOP with annotations Help Needed !
Can anyone help me with some sample code?
I need to implement Spring AOP and Annotations to achieve a Db Audit or Logging, in a Services Level.
Some code I found online, but nothing very clear and ...