Tagged Questions
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 ...
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
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
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
174 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
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 ...
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 ...
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
276 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
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 ...
-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 ...