Tagged Questions
The aspects tag has no wiki summary.
6
votes
3answers
509 views
What is AspectJ good for?
First let me note, that I use AspectJ and I like it, but what else can I do with it.
I know AspectJ can be/is used for Logging. In some cases it is used for Transaction controlling – mostly ...
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 ...
6
votes
2answers
421 views
Is AspectF (a Fluent Aspect Framework) an AOP-like design that can be used without much concern?
Omar Al Zabir is looking for "a simpler way to do AOP style coding".
He created a framework called AspectF, which is "a fluent and simple way to add Aspects to your code".
It is not true AOP, ...
4
votes
3answers
787 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 = ...
4
votes
6answers
878 views
Future of Aspect Oriented Programming
I am a newbie in the area of AOP. The first time I coded something applying concepts of AOP, I was thrilled to understand how aspects eliminate cross cutting patterns in your application. I was ...
3
votes
1answer
120 views
Replace Property Getter/Setter with Reflection or similar (no 3rd party libraries) in c#
I've got a property contained in a class for example
public class Greeter {
private Hashtable _data;
public string HelloPhrase { get; set; }
public Greeter(data) {
_data = data;
}
...
3
votes
3answers
471 views
3
votes
1answer
316 views
PostSharp on assemblies I don't have source for
In the examples on their website, PostSharp has a demo of intercepting calls in main system assemblies. I have tried a few times to setup and replicate said intercept calls on assemblies I don't have ...
3
votes
5answers
106 views
How do you globally modify page output sent from IIS without modifying the page source?
A couple sites of mine recently got "hacked". Someone was able to add a line of JavaScript to the bottom of every page on the site.
The server is a Windows Server 2003, and has Cold Fusion 8 and ...
3
votes
1answer
841 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
42 views
Which are the most suitable languages to apply Aspect's Theme approach?
I am thinking about reading Aspect-Oriented Analysis and Design: The Theme Approach, yet I am hesitant. Is it possible to use what's taught in the book with AspectJ (for Java) or Post# in C#? Maybe ...
2
votes
0answers
69 views
Using aspects from other jars
What I'm trying to accomplish is the following:
I have a server with the following structure.
bin
...
apis
services
...
etc...
So I want to define an API that contains an aspect to be used by ...
2
votes
2answers
173 views
JPA and database Flex fields
'Flex fields' is a term for altering a table at the customer site to add extra columns to a table to hold custom pieces of information about that table's entity. I was wondering if anyone has dealt ...
2
votes
1answer
225 views
redirected request when exception throwed
in my application (using spring),
i try to call a method from view using spring exposingBean. and when i try to invoke a method from view, it throw error. i try to catch with ...
2
votes
1answer
305 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
6answers
267 views
How to separate logging logic from business logic in a C program? And in a C++ one?
I am currently coding in C and I have lots of printfs so that I can track, at some times, the flow of my application. The problem is that some times I want more detail than others, so I usually spend ...
2
votes
1answer
280 views
C# AOP Method Interception on child method calls?
My AOP (C#) implementation always intercepts the first (public) method call but not subsequent methods called within the first intercepted method, is this a limitation with ContextBoundObject AOP ...
2
votes
1answer
313 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 ...
2
votes
1answer
303 views
Autocompletion in Eclipse for Roo project
I've got a Roo project where I've made a couple of entities, and when I load up the project in Eclipse it loads up fine, but if I i.e. make an instance MyEntity entity and then write entity. I don't ...
2
votes
3answers
2k views
Any PostSharp alternative?
I have to abandon using PostSharp, because it won't work with obfuscated/merged assemblies. At least, I don't see any way to get it working (it crashes on app start, when assemblies are obfuscated)
I ...
1
vote
1answer
79 views
How to use Spring AOP aspects with Groovy and Grails, specific caching example
We built a large insurance policy and claim management system using Grails and Groovy. Performance problems are slowing down the site because all 'READS' fetch from the database, which is not ...
1
vote
1answer
167 views
Best way for logging exception in Spring.NET with log4net or nlog
I would like to know which way of log exception in Spring.NET is prefered and why.
I found two common scenario.
1.Use IThrowAdvice.
Created throws advice and in method AfterThrowing handle / log ...
1
vote
1answer
20 views
PostSharp & Critical Code Parts
Supposing a critical part of an application's business rules are dependent on a given behavior, but that coding this behavior explicitly will clutter your code, would you rely on encapsulating it in ...
1
vote
2answers
132 views
AspectJ - why use annotations instead of ajc compiler?
We can use both @AspectJ annotation style to define aspects, as well as the AspectJ Java extension language, which requires us to use the ajc compiler.
What are the reasons that one would want to use ...
1
vote
3answers
257 views
Aspectj. Creating innter type methods in multiple classes
If I put:
public CountryState CountryState.find(long id) {
return (CountryState) findById(CountryState.class, id);
}
I'm creating a method find in the class CountryState.
Is there a way to ...
1
vote
1answer
535 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 ...
0
votes
1answer
67 views
@AspectJ syntax for “after() : staticinitialization(*)”
I'm trying to implement a tracing aspect using the pertypewithin instantiation model.
In this way, I'll be able to use one logger per class per type.
From some examples arround the we I can find this ...
0
votes
1answer
275 views
Spring AOP Aspect not executing
I've been trying to figure out why my simple aspect is not getting executed. I looked at the answers of similar problems but i still can't get it to work.
My intention is to wrap the execution of a ...
0
votes
0answers
111 views
dynamic domain model in java (osgi)
Let me explain my problem with an example. Let's say I have bundle foo.model containing class Country:
public class Country {
private String code; // 2char ISO code
private String name;
...
0
votes
0answers
31 views
Aspects in .net
I have an ASP.net application for which I would like to produce some trace output.
I do not have the source. Only the web-app itself.
Is there something like aspects for .net? Is load-time weaving ...
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 ...
0
votes
1answer
198 views
0
votes
1answer
190 views
Help create AspectJ equivellent to @PrePersist and @PreUpdate for audit use case
In JPA, there is @PrePersist and @PreUpdate annotations that allow operations before CRUD operations.
I am trying to find out the ApsectJ equivalent to this.
My use case is a JPA application that was ...
0
votes
1answer
46 views
PostSharp - break other aspects
I have two method that execute first the "Cache" aspect and next the "Log" aspect.
I want that, if I have a "cache hit" I don't have to Log anything! In other words, if a certain condition in "Cache" ...
0
votes
2answers
139 views
Avoiding Aspects While Debugging in Eclipse
I am working on the big project with a number of aspects defined on business classes.
I would like to avoid entering the aspect's code while debugging a code in business classes.
Is there any solution ...
0
votes
1answer
66 views
Polymorphism in AspectJ
I am trying to decide which is the better way to dispatch on a type in AspectJ.
Suppose I am performing a computation on a tree with three kinds of nodes. I could then write a simple Java method:
...
-1
votes
1answer
176 views
What are the drawbacks of the Facade design pattern?
…and how can we overcome them using the aspect-oriented programming?
-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 ...