Load-Time Weaving (LTW) is instrumentation (binary weaving of aspects) at class loading time in a VM. For example, in Java, it is implemented by AspectJ. Alternatively, in the .NET world, it is also called "Runtime Weaving" (see the PostSharp documentation).
2
votes
1answer
73 views
Spring caching issues when using AspectJ LTW
I'm using cache abstraction mechanism from Spring 3.0 RC1 : I've set up bytecode (based on AspectJ) weawing so that cache mechanism can be applied to methods called from within the class itself.
It is ...
2
votes
1answer
240 views
AspectJ load-time weaving + Spring 3.0.5.RELEASE + Tomcat 7 not working
I am trying to figure out why load-time weaving is not working yet for my web application. For my normal application (not webapp) it is working.
The test-project can be found on github ...
2
votes
1answer
243 views
Running Unit Tests using Maven in Spring LTW Environment
I am developing an application in a ddd architecture using Spring LoadTimeWeaving feature. The problem is i can run my Junit tests using eclipse but not through Maven. I have tried all the options ...
2
votes
1answer
386 views
Load-Time-Weaving differences between aspectj-weaver and spring-weaver
I am having some strange problems using spring and Load-Time-Weaving using AspectJ.
In one of my Apsects, I wanted to react on invocations of the "doAuthentication" Method of the class ...
2
votes
2answers
1k views
Configuring Integration Tests using Spring/Jetty (or Tomcat)/Maven for REST tests
I would like to test our REST service with HTTP requests (kinda blackbox testing). However, after a couple of hours googling and trying different configs, I am still not able to start Jetty correctly. ...
2
votes
0answers
218 views
AspectJ load-time weaving for signed jars
Does anybody success in using AspectJ load-time weaving with signed jars?
I got an exception and have no idea how to fix it (tested with AspectJ 1.6.8-16.10):
Exception in thread "main" ...
2
votes
2answers
4k views
Trouble configuring AspectJ LTW with Tomcat and Spring
I'm having some problems getting load-time weaving to work with Spring in my Tomcat 6 webapp. I only want to use it for transactions (so that self-invocation respects transactional annotations, which ...
2
votes
2answers
307 views
How can I make Loadtime-AspectJ to work in applet
Since AspectJ LoadTime-Weaving needs to load the JVM with an agent/it's own classloader - is there a way to load/make changes in the user's JVM from my applet? or maybe just before loading the applet ...
1
vote
0answers
112 views
Load Time Weaving 3rd Party Class on Websphere 8 using Aspectj
We are using AspectJ(1.6.12) for weaving a third party library class (SpringBeanELResolver). We enable LTW using <context:load-time-weaver/>, and our aspect uses AspectJ annotation ...
1
vote
1answer
176 views
Specifying -javaagent in some other way
I am trying to get to the point where I can start my web application using:
java -jar application.jar
I have embedded Jetty and used a maven assembly to build the required jar and this all works ...
1
vote
1answer
881 views
AspectJ - Compile-time vs load-time weaving
I am having trouble understanding aspectJ's compile-time and load-time weaving and figuring out what to use(and how to use ajc) to compile and build my project.
Here's my project structure:-
...
1
vote
1answer
379 views
How to use load time weaver in JBoss 6 with Spring 3 for AspectJ?
I tried using AspectJ, Spring 3 and JBoss 6 and ran into the problem that the load time weaving is not working at all. Creating small sample showed that the same war file that has a simple bean and a ...
1
vote
2answers
388 views
aop.xml name and location?
Is there a way to specify the name of the aop.xml file with LTW? or define another name and location?
I have several software modules that I use and that all use META-INF/aop.xml with different ...
1
vote
1answer
537 views
Load time weaving in AspectJ using aop.xml
From what I understand, for load time weaving to work using an aop.xml file, it must be placed in META-INF. Is there a way to get around this and use an aop.xml (or any xml file) in any directory? ...
1
vote
3answers
765 views
Spring Dependency Injecting an annotated Aspect
Using Spring I've had some issues with doing a dependency injection on an annotated Aspect class. CacheService is injected upon the Spring context's startup, but when the weaving takes place, it says ...
0
votes
1answer
38 views
Ist there a way to run JUnit 4 tests with Spring AspectJ LTW without using a jvm agent?
I have a spring tomcat project configured with aspectJ LTW, I would like to run unit tests with AspectJ LTW. According to the spring docs running with LTW for a standalone JVM requires passing in ...
0
votes
1answer
76 views
spring web app monitor newrelic conflicts loadtimeweaver with entity manger
A Spring web application is required to be monitor with newrelic. spring-agent is being load as loadTimeWeaver , spring agent uses for jpa load enhane and custom config ,when spring-agent and newrelic ...
0
votes
2answers
537 views
Spring: Is CGLIB required for injection of a concrete class using @Resource
I have configured Spring 3.0.6 with AspectJ LTW using spring-instrument.jar and:
<context:load-time-weaver aspectj-weaving="on" ...
0
votes
0answers
127 views
Load-time weaving with Spring, Eclipselink and Weblogic 10.x server
Can someone provide really working, verified configuration of Spring load-time weaving using EclipseLink on Weblogic server?
It seems that docs ( ...
0
votes
2answers
213 views
JavaConfig problem in web application (Vaadin + Spring)
UPDATED
I found an suspicious log entry:
org.springframework.beans.factory.wiring.BeanConfigurerSupport:
BeanFactory has not been set on BeanConfigurerSupport: Make sure this configurer runs in a ...
0
votes
2answers
337 views
Spring's LoadTimeWeaver Agent not starting up
I'm attempting to implement Load time weaving using Spring and AspectJ. To the best of my knowledge I have everything configured properly but I keep getting the error when I try to run my integration ...
0
votes
0answers
220 views
AspectJ load time weaving, point cut not working with superclass call
I've ran into a very strange issue with AspectJ using load time weaving. My goal was simple: intercept setter calls on my domain objects and do some extra work on the @After pointcut. I am using ...
0
votes
0answers
32 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
0answers
214 views
AspectJ Load time weaving + JBOSS 4.0.5.GA
I am going for AspectJ Load Time Weaving. That worked fine with standalone application :: adding aop.xml to META-INF folder and running it with -javaagent vm argument.
But I could not deploy it ...