active questions tagged aop - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T21:17:56Zhttp://stackoverflow.com/feeds/tag/aophttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856242/performance-cost-of-java-dynamic-proxy1Performance cost of Java dynamic proxyGennady Shumakher2009-12-06T19:03:58Z2009-12-06T19:25:29Z
<p>Many modern frameworks (Spring, Hibernate) provide very nice dynamic behaviors with use of Java dynamic proxies, but what's the exact performance cost associated with it? Are there public benchmarks available for Sun JVM? </p>
http://stackoverflow.com/questions/589182/has-anyone-ever-used-aop-to-detect-a-circular-reference0Has anyone ever used AOP to detect a circular reference?leeand002009-02-26T05:07:33Z2009-12-05T23:26:44Z
<p>I don't know, so that you could throw a CircularReferenceException?</p>
http://stackoverflow.com/questions/1557761/whats-the-difference-between-postsharp-and-castle-dynamic-proxy0Whats the difference between PostSharp and Castle Dynamic Proxy?jfar2009-10-13T01:03:28Z2009-12-03T13:22:34Z
<p>Just wondering what the main differences are between these libraries, how they differ in features and functionality.</p>
<p>Hoping for more information than I could find with a Google query...</p>
http://stackoverflow.com/questions/1425088/incompatible-types-found-required-default-enums-in-annotations1incompatible types found: required: default enums in annotationsunknown (google)2009-09-15T04:12:55Z2009-12-01T16:01:58Z
<pre><code>[javac] C:\ws\galileo\test\Cacheable.java:13: incompatible types
[javac] found : com.io.CacheType
[javac] required: com.io.CacheType
[javac] public CacheType id() default CacheType.COMMON;
</code></pre>
<p>I really don't get this one.
I have a project where I'm custom building a caching interceptor for Spring. It simply is a look by cache name to point to EhCache and uses aop-autoproxy to load the CacheableAspect (which is my caching intercepter). Now when I use the default value in the annotation, ANT gives me the compiler error below. I tried updating to the latest JDK (i'm on 1.6 16 now) and setting source/target levels in the ant script but no success. When I remove the default value and force all areas to specify a value, it compiles in ant fine.</p>
<p>It always worked in Eclipse, I had unit tests that ran perfectly with the previous default value.</p>
<p>What gives? I tried building a project (no spring) that simply echoed the configuration with ant and it compiled in ant fine (and in eclipse). </p>
<p>that tells me MAYBE it might be the spring auto-proxying somehow? but then why would the compiler not give me the generated type name? GRRRR. Any thoughts?</p>
<pre><code>import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.io.CacheType;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Cacheable {
public CacheType value() default Cachetype.COMMON;
}
public enum CacheType {
COMMON("common"),
PERSISTENT("persistent";
private String cache;
CacheType(String cache) {
this.cache = cache;
}
public String cache() {
return this.cache;
}
}
</code></pre>
http://stackoverflow.com/questions/1826702/aop-interception-attribute0AOP interception attributeone2009-12-01T14:54:38Z2009-12-01T15:04:50Z
<p>So, i have this problem, and no one seems to be able to help. So rather than keep bashing away i'm going to throw it out there for alternative ways to skin this particular cat.</p>
<p>I currently have the following:</p>
<pre><code>public interface ICustomerService
{
Customer GetCustomer(int id);
}
public class CustomerService : ICustomerService
{
public Customer GetCustomer(int id)
{
...
}
}
</code></pre>
<p>... and with Unity i have IOC setup, and at the same time configuring interception like :</p>
<pre><code>IUnityContainer ioc = new UnityContainer();
ioc.RegisterType<ICustomerService, CustomerService>()
.Configure<Interception>()
.SetInterceptorFor<ICustomerService>(new InterfaceInterceptor());
</code></pre>
<p>What i want to achive is to be able to place attributes in the interface like this:</p>
<pre><code>public interface ICustomerService
{
[Log]
Customer GetCustomer(int id);
}
</code></pre>
<p>... defined like :</p>
<pre><code>public class LogAttribute: HandlerAttribute
{
public override ICallHandler CreateHandler(IUnityContainer container)
{
return new LogHandler();
}
}
</code></pre>
<p>... and then in the LogHandler class do all the logging that i want like :</p>
<pre><code>public class LogHandler : ICallHandler
{
public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
{
... log stuff
}
}
</code></pre>
<p>What i want to achieve is a tracing/logging system where the handler logs what namespace.class.methodname is being called, AND the parent namespace.class.methodname that called that. I've tried with no success to use the "input" IMethodInvocation parameter to get the info i want, the issue being, input returns the "ICustomerService" interface, whilst checking a stackframe for the parent returns the implemented class of the parent (eg. CustomerService) meaning that when i try to create a tree structure using the namespace.class.methodname as the entitys ID's, the ID's and parentID's don't match up.</p>
<p>Dropping a parameter into the [Log] attribute isn't going to work either really, because what could i put in there? If i put the interface name, i still have the same problem as above where the ID of one is an interface and the parent is the implementing class. And, i can't put the implementing class name in the attribute on the interface as that defeats the purpose of having an interface in the first place!</p>
<p>So, that's the dilema. Anyone got fresh ideas?</p>
http://stackoverflow.com/questions/1728160/patterns-for-functional-dynamic-and-aspect-oriented-programming5Patterns for functional, dynamic and aspect-oriented programmingVitaliy Liptchinsky2009-11-13T09:32:57Z2009-12-01T06:24:18Z
<p>We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in the web on this subject.</p>
<p>Are there any books (articles, resources) on patterns(best practices) for functional programming?</p>
<p>For dynamic programming in languages like Python and Ruby?</p>
<p>For AOP?</p>
http://stackoverflow.com/questions/1084772/policy-injection-with-asp-net-mvc-controllers0Policy Injection with ASP.NET MVC Controllersnikmd232009-07-05T20:32:53Z2009-11-30T14:18:51Z
<p>I'm running into an issue with the Policy Injection Application Block from Enterprise Library in conjunction with ASP.NET MVC.</p>
<p>In my ControllerFactory, I'm creating the controller and then calling <code>PolicyInjection.Wrap</code> on the controller. This gives me back a Transparent Proxy to the controller which manages the call handler chain.</p>
<p>Finally, I cast the Transparent Proxy to an <code>IController</code> and return it.</p>
<p>This seems to work well, except that none of the call handlers I've defined for my controller are executing. (For example I have a Logging Handler configured, but nothing is being logged by PIAB.)</p>
<p>Is my final cast messing this up somehow? How does <code>ControllerBase.Execute()</code> call into my controller? It seems like my proxy should be utilized. Anyone using PIAB on ASP.NET controllers?</p>
http://stackoverflow.com/questions/977714/accessing-httpservletrequest-from-aop-advice-in-spring-2-5-with-annotations1Accessing HttpServletRequest from AOP advice in Spring 2.5 with annotationsTomas Salfischberger2009-06-10T19:35:25Z2009-11-25T10:23:13Z
<p>Hi All,</p>
<p>I have tried to find the answer to this question on both the Spring forum and by searching StackOverflow. I have found a lot of pages describing horrible architectures and asking for about the same thing as I do, but my intended usage is different so please bear with me :-)</p>
<p>I have a Spring 2.5 project using annotation based form controllers basically like this:</p>
<pre><code>@RequestMapping("/edit/someObject")
public String handleSubmit(HttpServletRequest request, HttpServletResponse response, SomeObject someObject, BindingResult result) {
// Some check here
if(result.hasErrors()) {
return "form";
} else {
SomeObjectService.update(someObject);
return "redirect:/view/someObject";
}
}
</code></pre>
<p>In this I check for some http property in the HttpServletRequest and use the HttpServletResponse to send a redirect if this property has a certain value. This check is done is a lot (but not all) of the form controllers in this application. What I would like to do is create a @CheckedSubmit annotation handled by some AOP advice to do this check and then drop the HttpServletRequest and HttpServletResponse parameters from the controller.</p>
<p>My problem is that I have no idea how to access the current HttpServletRequest and HttpServletResponse from this AOP advice without using these two as (unused) parameters to the annotated method, which is what I tried to avoid in the first place.</p>
<p>Summary: How to access the HttpServletRequest/Response from AOP advice on an @RequestMapping annotated method?</p>
http://stackoverflow.com/questions/1789794/unity-ioc-aop-interface-interception0Unity IOC, AOP & Interface Interceptionone2009-11-24T12:33:01Z2009-11-24T12:37:41Z
<p>I've been playing around with Unity to do some AOP stuff, setting up via IOC like:</p>
<pre><code>ioc.RegisterType<ICustomerService, CustomerService>()
.Configure<Interception>().SetInterceptorFor<ICustomerService>(new InterfaceInterceptor());
</code></pre>
<p>... and then having an ICallHandler on the ICustomerService interface's methods. For teh time being i want to just get the method called, the class it's in, and the namespace for that class. So... inside the...</p>
<pre><code>public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
</code></pre>
<p>...method of the ICallHandler, i can access the method name via input.MethodBase.Name... if i use input.MethodBase.DeclaringType.Name i get the interface ICustomerService... BUT... how would i go about getting the implementing class "CustomerService" rather than the interface?</p>
<p>I've been told to use input.Target.. but that just returns "DynamicModule.ns.Wrapped_ICustomerService_4f2242e5e00640ab84e4bc9e05ba0a13"</p>
<p>Any help on this folks?</p>
http://stackoverflow.com/questions/1698985/jboss-microcontainer-aop-in-a-standalone-app0JBoss Microcontainer + AOP in a standalone appOndra Žižka2009-11-09T03:46:37Z2009-11-22T15:53:20Z
<p>Hi everyone,</p>
<p>I'm trying to create a standalone app using JBoss Microcontainer for IoC and JBoss AOP for, well, AOP.
I've boot-strapped, deployed a descriptor with AOP XML, so far so good.
But the aspect is not performed. Do I need to enable AOP plugin or something?
Note that I don't want to add a build step - I want it to work like Spring AOP.</p>
<p>Please check the code below.</p>
<p>Thanks for help.</p>
<pre><code><deployment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:jboss:bean-deployer:2.0 bean-deployer_2_0.xsd"
xmlns="urn:jboss:bean-deployer:2.0"
xmlns:aop="urn:jboss:aop-beans:1.0">
<bean name="myGarage" class="jbmctest.Garage">
<property name="car">
<bean name="myCar" class="jbmctest.Car">
<property name="name">Red Devil</property>
</bean>
</property>
</bean>
<aop:interceptor name="FuelInterceptor" class="jbmctest.FuelInterceptor"/>
<aop:bind pointcut="execution(* *->*(..)">
<aop:interceptor-ref name="FuelInterceptor"/>
</aop:bind>
</deployment>
</code></pre>
http://stackoverflow.com/questions/25803/how-do-i-intercept-a-method-call-in-c12How do I intercept a method call in C#?Journeyman2008-08-25T09:00:23Z2009-11-21T06:34:06Z
<p>For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method signature). </p>
<p>How do I accomplish this assuming that: </p>
<ul>
<li>I don't want to use any 3rd party
AOP libraries for C#,</li>
<li>I don't want to add duplicate code to all the methods that I want to trace, </li>
<li>I don't want to change the public API of the class - users of the class should be able to call all the methods in exactly the same way. </li>
</ul>
<p>To make the question more concrete let's assume there are 3 classes: </p>
<pre><code> public class Caller
{
public static void Call()
{
Traced traced = new Traced();
traced.Method1();
traced.Method2();
}
}
public class Traced
{
public void Method1(String name, Int32 value) { }
public void Method2(Object object) { }
}
public class Logger
{
public static void LogStart(MethodInfo method, Object[] parameterValues);
public static void LogEnd(MethodInfo method);
}
</code></pre>
<p>How do I invoke <em>Logger.LogStart</em> and <em>Logger.LogEnd</em> for every call to <em>Method1</em> and <em>Method2</em> without modifying the <em>Caller.Call</em> method and without adding the calls explicitly to <em>Traced.Method1</em> and <em>Traced.Method2</em>?</p>
<p>Edit: What would be the solution if I'm allowed to slightly change the Call method?</p>
http://stackoverflow.com/questions/316132/what-ever-happened-to-aspect-oriented-programming5What ever happened to Aspect Oriented Programming?BubbaT2008-11-25T01:53:22Z2009-11-20T16:51:00Z
<p>I remember in the early 2000's late 90s Aspect Oriented Programming was supposed to be the "Next Big Thing". Nowadays I see some AOP still around but it seems to have faded into the background. </p>
http://stackoverflow.com/questions/1766917/is-it-possible-to-catch-handle-exceptions-thrown-from-a-grails-controller-aop2Is it possible to catch / handle exceptions thrown from a Grails controller? Aop?Kimble2009-11-19T22:06:54Z2009-11-20T04:47:30Z
<pre><code>class MyController {
def myAction = {
throw new MyException("Test")
}
}
</code></pre>
<p>Is it possible to catch / handle the exception thrown by the code above? The following url-mapping kinda works, but it causes the exception to be logged, which is annoying because in my case I'm able to handle it. </p>
<pre><code>"500"(controller: "error", action: 'myExceptionHandler', exception: MyException)
</code></pre>
<p>Why don't I wrap the code that might throw an exception in try / catch? Well I have several actions that might throw the same exception. Wrapping each and every one of them in try / catch violates the DRY-principle. </p>
http://stackoverflow.com/questions/1754296/how-to-convert-an-exception-to-another-one-using-postsharp0How to convert an exception to another one using PostSharp?remio2009-11-18T07:54:39Z2009-11-18T19:59:45Z
<p>I would like to automagically add the following code around the body of some methods:</p>
<pre><code>try
{
// method body
}
catch (Exception e)
{
throw new MyException("Some appropriate message", e);
}
</code></pre>
<p>I am working with PostSharp 1.0 and this is what I've done at the moment:</p>
<pre><code>public override void OnException(MethodExecutionEventArgs eventArgs)
{
throw new MyException("Some appropriate message", eventArgs.Exception);
}
</code></pre>
<p>My problem is that I can see the PostSharp <code>OnException</code> call in the stack.<br/>
What would be the good practice to avoid this and get the same call stack as implementing by hand the exception handler?</p>
http://stackoverflow.com/questions/1752526/how-to-get-this-really-fast0How to get this really fast?Jan2009-11-17T23:09:17Z2009-11-18T07:48:45Z
<p>I have a framework that allows users to do queries to a specific datasource (the Football Manager 2010 ingame database, for those of you interested).</p>
<p>In this framework, I have two different modes wherein my framework can run: realtime and cached mode. I want users who use this framework to be able to switch by just calling a different constructor (e.g. <code>new Context(Mode.Cached)</code>). That should be the only switch a user should make, so he can still have all the same Linq calls, but just use Cached mode when his application fits better. Clear.</p>
<p>I had decided that using PostSharp should be my best choice because:</p>
<ul>
<li>Create an aspect on every property (that's already been decorated by an attribute)</li>
<li>In that aspect, check whether we are in <code>Cached</code> or <code>Realtime</code> mode</li>
<li>Return the value either from memory or from cache</li>
</ul>
<p>Well that works. BUT! Speed is not good enough. When doing the following on 90.000 objects:</p>
<pre><code>foreach (Player p in fm.Players)
{
int ca = (short)ProcessManager.ReadFromBuffer(p.OriginalBytes, PlayerOffsets.Ca, typeof(Int16));
}
</code></pre>
<p>It takes only 63 ms. (ReadFromBuffer is a highly optimized function which takes <code>byte[], int, Type</code> and returns <code>object</code>), 63 ms is very reasonable considering the large amounts of objects.</p>
<p><strong>But!</strong> In PostSharp, I implemented quite the same using this:</p>
<pre><code> public override void OnInvocation(MethodInvocationEventArgs eventArgs)
{
if (eventArgs.Method.Name.StartsWith("~get_"))
{
if (Global.DatabaseMode == DatabaseModeEnum.Cached)
{
byte[] buffer = ((BaseObject)eventArgs.Instance).OriginalBytes;
eventArgs.ReturnValue =
ProcessManager.ReadFromBuffer(buffer, this.Offset, eventArgs.Method.ReturnType);
}
</code></pre>
<p>Now I call this using</p>
<pre><code>foreach (Player p in fm.Players)
{
int ca = p.CA;
}
</code></pre>
<p>And it takes <em>782 ms</em>, more than 10 times as much!</p>
<p>I created the aspect as:</p>
<pre><code>[Serializable]
[MulticastAttributeUsage(MulticastTargets.Method, PersistMetaData = true)]
internal class FMEntityAttribute : OnMethodInvocationAspect
{
public FMEntityAttribute(int offset, int additionalStringOffset)
{
this.Offset = offset;
this.AdditionalStringOffset = additionalStringOffset;
}
//blah blah AOP code
}
</code></pre>
<p>And the property is decorated like</p>
<pre><code> [FMEntityAttribute(PlayerOffsets.Ca)]
public Int16 CA { get; set; }
</code></pre>
<p>How can I get this to perform well?!</p>
http://stackoverflow.com/questions/1733391/reduce-postsharp-compile-time-overhead1Reduce PostSharp compile time overheadJason2009-11-14T05:37:10Z2009-11-17T17:16:37Z
<p>We recently introduced <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a> into our code base and the compile time of our ASP.NET MVC project has doubled to quadrupled. We have about 3 MVC projects and approximately 8 class library projects in our solution.</p>
<p>Obviously there will be overhead associated with PostSharp since it is <a href="http://www.postsharp.org/aop-net/compiletime-weaving" rel="nofollow">modifying the MSIL code</a>. But a 2x to 4x overhead is quite an overhead. </p>
<p>Is this typical with PostSharp?</p>
http://stackoverflow.com/questions/1731515/dependency-injection-who-owns-the-interface4Dependency Injection - Who owns the Interface?marshall g2009-11-13T19:55:28Z2009-11-14T15:46:00Z
<p>Assuming I want to use a dependency injection framework in an AOP approach, with the goal of producing code modules. What's the best practice for the ownership of the shared interfaces? By ownership I mean the body of code that needs to be referenced in order to use the interface.</p>
<p>My first guess is that in AOP you would define a class library of interfaces, namespaced by aspect. eg: company.aspect.logging.ILogger. Each module would then reference this library and avoid having any code involved in implementation of ILogger also define ILogger.</p>
<p>Best practices?</p>
http://stackoverflow.com/questions/1716040/preprocessing-c-detecting-methods2Preprocessing C# - Detecting MethodsKazar2009-11-11T15:43:28Z2009-11-11T22:02:33Z
<p>Hey,</p>
<p>I require the ability to preprocess a number of C# files as a prebuild step for a project, detect the start of methods, and insert generated code at the start of the method, before any existing code. I am, however, having a problem detecting the opening of a method. I initially tried a regular expression to match, but ended up with far too many false positives. </p>
<p>I would use reflection, but the MethodInfo class does not reference the point in the original source.</p>
<p><strong>EDIT</strong>: What I am really trying to do here is to support pre-conditions on methods, that pre-condition code being determined by attributes on the method. My initial thought being that I could look for the beginning of the method, and then insert generated code for handling the pre-conditions.</p>
<p>Is there a better way to do this? I am open to creating a Visual Studio Addin if need be.</p>
<p>This is a .NET 2.0 project.</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1708992/what-are-the-different-methods-for-injecting-cross-cutting-concerns5What are the different methods for injecting cross-cutting concerns?Stacy Vicknair2009-11-10T15:53:46Z2009-11-10T16:10:37Z
<p>What are the different methods for injecting cross-cutting concerns into a class so that I can minimize the coupling of the classes involved while keeping the code testable (TDD or otherwise)?</p>
<p>For example, consider if I have a class that requires both logging functionality and centralized exception management. Should I use DIP and inject both required concerns via an interface into the class that requires them? Should I use a service locater that I pass to each class that will require some cross cutting functionality? Is there a different solution altogether? Am I asking the wrong question entirely?</p>
http://stackoverflow.com/questions/1703746/is-there-an-aop-solution-for-silverlight0Is there an AOP solution for Silverlight?Jason Young2009-11-09T20:54:35Z2009-11-10T02:43:56Z
<p>I see that there is PostSharp AOP support for Silverlight, but is there a product that works like the Castle DynamicProxy library, but in Silverlight?</p>
http://stackoverflow.com/questions/1704995/polluting-domain-types-by-implementing-infrastructure-related-interfaces2Polluting domain types by implementing infrastructure-related interfacesDevfellow2009-11-10T00:52:26Z2009-11-10T01:36:10Z
<p>Hi all,</p>
<p>Did about 30 minutes worth of searching, found lots of relevant info, but none that addresses this particular concern, hope I'm not repeating a common question. </p>
<p>I would like to know what the general consensus is in regard to implementing infrastructure-related interfaces in domain types. Everything I've read about DDD leads me to believe that this is to be avoided, as this understandably detracts from the conciseness of the model.</p>
<p>I am, however, at a point where I'm uncertain as to how to work around this. Specifically, I've got a domain type that would be perfectly fine to use in my presentation layer, except that I'd like to display an instance of it in a control that requires it implements IComparable. I would rather not 'pollute' my type with an implementation of this interface.</p>
<p>I think (perhaps naively) my options are:</p>
<ol>
<li>Use a Data Transfer Object (DTO), have it implement the interface, and use an instance of that in my
presentation layer.</li>
<li>I'm vaguely
familiar with the fundamentals of
AOP - perhaps there's a suitable
technique in this realm?</li>
<li>Perhaps
related to option 2 - code 'weaving'?
I know very little of why/when to
consider this, but am I bumping up
against it now? </li>
<li>Bite the bullet,
and implement the bit of code
that it takes to satisfy the contract.</li>
<li>Some voodoo-magic I've
never even heard of?</li>
</ol>
<p>If anybody cares to recommend 2, 3, or 5 - could you point me in the direction of some reading material that might help get me started?</p>
<p>Thx in advance.</p>
http://stackoverflow.com/questions/1693902/sts-using-jsf-managed-beans-and-aspects0STS : Using JSF , Managed beans and AspectsJ2EE Developer2009-11-07T18:04:31Z2009-11-08T15:53:02Z
<p>Main idea is to use JSF with Spring AOP for modularizing cross cutting concerns like logging.
I am using STS (Spring tool suite) and have jsp page with jsf tags. These tags are reading data from a managed bean properties(getter). I have aspect configured for the getters. When i run application with Java/AspectJ getter is called and aspect advice code is executed and it prints out using system.out.println a message to console.
But when i load jsf page there is no output on the console.
Any idea how can i integrate these aspects with calls from JSF or JSP pages ?</p>
http://stackoverflow.com/questions/1690269/spring-aspect-is-not-getting-applied-at-runtime1Spring - Aspect is not getting applied at runtimepeakit2009-11-06T20:41:20Z2009-11-06T22:58:13Z
<p>I have the following configuration:</p>
<pre><code>
@Aspect
public class MyAspect {
@Around(@annotation(SomeAnnotation))
public Object myMethod(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("Hello...");
}
}
</code></pre>
<p>And have the following beans definitions:</p>
<pre><code><beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<bean id="myAspect" class="MyAspect" />
</beans>
</code></pre>
<p>I am seeing that the behavior is not getting applied to <code>@SomeAnnotation</code> annotated method at runtime. Any idea why?</p>
<p>Thx.</p>
http://stackoverflow.com/questions/901632/why-doesnt-aspectj-compile-time-weaving-of-springs-configurable-work1Why doesn't AspectJ compile-time weaving of Spring's @Configurable work?rrc7cz2009-05-23T14:36:45Z2009-11-06T06:19:43Z
<p><strong>Update 5:</strong> I've downloaded the latest Spring ToolsSuite IDE based on the latest Eclipse. When I import my project as a Maven project, Eclipse/STS appears to use the Maven goals for building my project. This means AspectJ finally works correctly in Eclipse.</p>
<p><strong>Update 4:</strong> I have ended up just using Maven + AspectJ plugin for compile-time weaving, effectively bypassing Eclipse's mechanism.</p>
<p><strong>Update 3:</strong> It seems AspectJ's Eclipse plug-in breaks Eclipse's ability to correctly Publish to Tomcat. Only by removing the AspectJ capability on a project can I get it to properly Publish again. Very annoying.</p>
<p><strong>Update 2:</strong> I have this now working in Eclipse. It makes me very uncomfortable to say this, but I have no idea how I got it working from either Eclipse or Maven builds. It appears to be a compile issue rather than a run-time issue.</p>
<p><strong>Update 1:</strong> It appears I've gotten this to work via Maven builds, but I have no idea how. Eclipse still doesn't work. The only thing I changed in the <em>pom.xml</em> was adding these (insignificant?) configuration parameters:</p>
<pre><code><source>1.6</source>
<complianceLevel>1.6</complianceLevel>
<verbose>true</verbose>
<showWeaveInfo>true</showWeaveInfo>
<outxml>true</outxml>
</code></pre>
<p>I'm actually worried that I have a repeat of <a href="http://stackoverflow.com/questions/828747/why-does-springs-configurable-sometimes-work-and-sometimes-not">this problem</a>, where everything works inconsistently. I will keep this question updated as I learn more.</p>
<p>With regards to Eclipse, I made some progress by taking the binary aspects I wish to weave - in this case <em>spring-aspects.jar</em> - and copying it out of my classpath. I then add this now external jar to my <strong>Aspect Path</strong>. After doing this, Eclipse properly shows me AspectJ markers in my code. It's annoying that I can't just leave <strong>spring-aspects.jar</strong> in my <strong>Java Build Path</strong> which is maintained by Maven for me via the Maven plug-in. For some reason, however, the AspectJ plug-in doesn't see the binary aspects unless they're explicitly added to the <strong>Aspect Path</strong>.</p>
<p><hr></p>
<p><strong>Original Post:</strong> @Configurable is a Spring annotation that allows dependencies to be injected into objects instantiated external to Spring (for example, by Hibernate or some Factory class).</p>
<p>I was using this annotation previously with load-time weaving and it <em>mostly</em> worked. Occasionally I would boot up and nothing would get injected. This issue spawned <a href="http://stackoverflow.com/questions/828747/why-does-springs-configurable-sometimes-work-and-sometimes-not">this StackOverflow question</a>. There weren't many answers, but most suggested that I try compile-time weaving instead due to greater reliability.</p>
<p>I installed the AspectJ plug-in for Eclipse and Maven. Both of these produce what appears to be properly compiled classes. I've opened up one of the classes in a text editor before AspectJ compilation and found no references to AspectJ. I opened it up after AspectJ compilation and both Eclipse and Maven generated versions have a reference to <strong>org.aspectj.weaver.MethodDeclarationLineNumber</strong>. This is why I assume it's being properly compiled. The problem is that once deployed, no dependencies get injected. </p>
<p>My Spring <em>applicationContext.xml</em> does include the following:</p>
<pre><code> <context:spring-configured />
<context:component-scan base-package="com.myapp" />
</code></pre>
<p>Is the above all that's needed for classes marked @Configurable to have DI done? During the conversion from load-time weaving to compile-time weaving, I removed <em>META-INF/aop.xml</em>, <em><context:load-time-weaver /></em> from my <em>applicationContext.xml</em>, and Spring's Tomcat weaver from my <em>context.xml</em>.</p>
<p>How can I investigate this problem further? What are possible causes?</p>
http://stackoverflow.com/questions/1560994/aspectj-problem3AspectJ problemAJ2009-10-13T15:30:29Z2009-11-06T00:46:57Z
<p>Hi I am new to AspectJ and I would like to find out if creating variants of a class using Aspects - I will create another instance of the class as well?</p>
http://stackoverflow.com/questions/1680272/use-aop-in-c-to-detect-if-return-value-is-used0Use AOP in C# to detect if return value is usedqueen32009-11-05T12:32:23Z2009-11-05T13:19:20Z
<p>This is related to my other <a href="http://stackoverflow.com/questions/1679727/how-to-remember-to-use-return-value">question</a>, but this time very specific. Is it possible, using AOP (PostSharp in particular) to detect if function's return value was used? For example</p>
<pre><code>var x = y.func(); // used
y.func(); // not used
</code></pre>
<p>Note that detection should be performed for this particular call, not for the function in general.</p>
<p>I never used AOP/PostSharp so even if I don't find answer in PostSharp's docs I can't be sure it's not there. I do not insist on PostSharp, though; I'm OK to use any library as long as it can do the job.</p>
http://stackoverflow.com/questions/1061732/is-there-any-full-aspect-oriented-programming-language0Is there any full aspect-oriented programming language?Victor2009-06-30T04:30:36Z2009-11-05T07:57:05Z
<p>When I say "full" I mean a language that's not an extension to some already existent language like Java or C++. When OOP started it begun with extensions for procedural languages like C and Pascal. Is there any Aspect-Oriented programming language "by itself"?</p>
http://stackoverflow.com/questions/1675881/why-is-this-method-call-not-getting-intercepted0Why is this method call not getting intercepted?Alex2009-11-04T18:57:37Z2009-11-04T19:23:27Z
<p>Why doesn't DoIt() method call get intercepted? Should I use something other than InterfaceInterceptor to intercept the DoIt() method? How would you do it?</p>
<pre><code>using System;
using Microsoft.Practices.Unity;
using Microsoft.Practices.Unity.InterceptionExtension;
namespace UnityTest
{
class Program
{
static void Main(string[] args)
{
IUnityContainer container = new UnityContainer();
container.AddNewExtension<Interception>();
container.RegisterType<ILogger, Logger>();
container.Configure<Interception>().SetInterceptorFor<ILogger>(new InterfaceInterceptor());
var logger = container.Resolve<ILogger>();
logger.Write("World.");
Console.ReadKey();
}
}
public interface ILogger
{
void Write(string message);
[Test]
void DoIt(string message);
}
public class Logger : ILogger
{
public void Write(string message)
{
DoIt(message);
}
public void DoIt(string message)
{
Console.Write(message);
}
}
public class TestAttribute : HandlerAttribute
{
public override ICallHandler CreateHandler(IUnityContainer container)
{
return new TestHandler();
}
}
public class TestHandler : ICallHandler
{
public int Order { get; set; }
public IMethodReturn Invoke(IMethodInvocation input, GetNextHandlerDelegate getNext)
{
Console.Write("Hello, ");
return getNext()(input, getNext);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1671860/my-spring-aop-not-working0My Spring AOP not working Jeune2009-11-04T05:40:14Z2009-11-04T09:59:25Z
<p>I need help making AOP work. What am I missing here? </p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
<bean id="duke" class="com.tutorial.springidol.Singer">
<constructor-arg value="Duke"/>
<constructor-arg>
<bean class="com.tutorial.springidol.Song">
<property name="title" value="ABC"/>
</bean>
</constructor-arg>
</bean>
<bean id="audienceAdvice" class="com.tutorial.advice.AudienceAdvice">
<property name="audience">
<bean class="com.tutorial.springidol.Audience"/>
</property>
</bean>
<bean id="audienceAdvisor"
class="org.springframework.
aop.support.RegexpMethodPointcutAdvisor">
<property name="advice" ref="audienceAdvice"/>
<property name="pattern" value=".*perform"/>
</bean>
</beans>
</code></pre>
<p>AudienceAdvice.java</p>
<pre><code>public class AudienceAdvice implements MethodBeforeAdvice,
AfterReturningAdvice {
@Override
public void before(Method arg0, Object[] arg1, Object arg2)
throws Throwable {
audience.takeSeats();
audience.turnOffCellphones();
}
@Override
public void afterReturning(Object arg0, Method arg1, Object[] arg2,
Object arg3) throws Throwable {
audience.applaud();
}
private Audience audience;
public void setAudience(Audience audience) {
this.audience = audience;
}
}
</code></pre>
<p>The AOP does not work but the target executes though. </p>
http://stackoverflow.com/questions/559656/help-and-information-about-aspect-oriented-programming11Help and Information about Aspect Oriented ProgrammingJeffrey Cameron2009-02-18T02:45:38Z2009-11-04T07:11:16Z
<p>I'm a newcomer to the idea of aspect-oriented programming but I would like to explore the idea of using it on my project for handling logging, reporting, etc. To this end I have some questions:</p>
<ul>
<li>Should I bother exploring this path of AOP for these limited purposes?</li>
<li>What .NET Frameworks supporting AOP are available?</li>
<li>Which of these frameworks support a fluent interface (me hates XML config) :)</li>
</ul>