The aspects tag has no wiki summary.
0
votes
1answer
23 views
Using Spring Aspects with Jetty
I have an application that uses Aspects with Spring 3.1. It runs perfectly with Tomcat 7. The advised methods get called as expected.
I want it to work with Jetty. I've previously used Aspects with ...
2
votes
3answers
314 views
Creating our own aspects using custom annotations
I am new to Annotations and new to StackOverflow and this is my first question. I am trying to write custom annotations which will help me trace and log method executions.
For example:
class A
{
...
1
vote
1answer
144 views
Why a defined pointcut with @target doesn't work?
I'm trying to use Spring aspects to do save aditional data while storing documents with MongoRepository. The target is this interface:
@InSearch
public interface ItemRepository extends ...
2
votes
4answers
302 views
Why does the serialVersionUID field exist?
It has baffled me from the launch of the Serializable interface why I have to incorporate this field in all of my classes. I understand that this interface needs a unique identifier to mark the class ...
0
votes
1answer
64 views
Can a jar file containing aspects and classes self instrument safely
if I have an instrumented jar file that contains compiled aspects and compiled classes can I instrument that jar with itself?
If I repeat this with the output jar does behavior get duplicated or is ...
1
vote
1answer
82 views
how to get started with aspects in c# [closed]
I'v heard about aspects in a programming language and I was pretty enthusiastic about it. However I do not know how to get started with them. And I tought you guys may be set in the right direction.
2
votes
1answer
419 views
Spring 3 Compile Time Weaving Problems for Objects in jar dependency with @Configurable (using Maven)
Been googling and working on this for way too long now. Been over various stackoverflow posts as well, but still stumped on what's going on here.
First off, what I want:
I have a persistence jar ...
2
votes
2answers
167 views
Adding an aspect to catch an exception and return null instead
I've switched from using Spring Data JPA for regular DAO objects with Entity Manager and found out, that instead of returning null the .getSingleResult() throws NoResultException. Is there some way of ...
1
vote
1answer
518 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
608 views
Best way for logging exceptions 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 scenarios.
1.Use IThrowAdvice.
I created throws advice and in method AfterThrowing handle / log ...
1
vote
1answer
36 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 ...
0
votes
1answer
549 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 ...
3
votes
1answer
360 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;
}
...
2
votes
1answer
63 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 ...
0
votes
1answer
1k 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 ...
1
vote
2answers
517 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 ...
4
votes
1answer
243 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...
I want to define an API that contains an aspect to be used by ...
0
votes
1answer
499 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 ...
10
votes
3answers
3k 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 = ...
1
vote
3answers
2k views
2
votes
2answers
402 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 ...
0
votes
1answer
392 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 ...
-2
votes
1answer
431 views
What are the drawbacks of the Facade design pattern? [closed]
…and how can we overcome them using the aspect-oriented programming?
0
votes
1answer
58 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" ...
2
votes
1answer
515 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 ...
3
votes
2answers
567 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 ...
8
votes
3answers
2k 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 ...
3
votes
6answers
431 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 ...
3
votes
3answers
731 views
2
votes
1answer
418 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
3answers
685 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 ...
3
votes
1answer
5k 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
1answer
602 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 ...
4
votes
1answer
719 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 ...
2
votes
1answer
603 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 ...
10
votes
3answers
6k 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 ...
0
votes
2answers
269 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 ...
3
votes
4answers
3k 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 ...
3
votes
5answers
121 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 ...
0
votes
1answer
82 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:
...
7
votes
2answers
801 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, ...
5
votes
6answers
1k 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
1k 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 ...
